A New Way to Randomize in .NET 8We've all used random numbers in C# for various reasons. It has never been difficult to get a random number and use it, we've all probably written something like this: public int GetRandomNumber(int max) { var random = new Random(); return ra...Jan 3, 2024·2 min read
How to Create a Blazor ComponentBlazor components are a great way to write reusable code and follow the DRY principle. There are a few guidelines that are worth following when creating them and a couple ways to create them as well. We're going to start with the default project and ...Jul 17, 2023·3 min read
Getting Started with Blazor WASMBlazor WebAssembly (WASM) is a great way to write a web app (or even a desktop app! More on that later...). You get all of the benefits and productivity of using ASP.NET, C#, and WASM all in one! Of course, there are drawbacks, but that is a discussi...Jul 16, 2023·2 min read