Blazor is a web framework that lets you create single page web applications using C# instead of JavaScript or TypeScript. Blazor is rapidly gaining momentum among C# and .NET developers since it lets them leverage their existing skills to build rich...
C# 8.0 introduced a lot of great new features and many of us wondered how C# 9.0 would follow such a tough act. Fortunately, C# 9.0 has continued to move the language forward by providing us with some great new tools....
Podcasts are a great way for developers to keep up with the latest technology and learn from the experience of others. The conversational nature of most podcasts makes their content easier to absorb than many other mediums. Podcasts are also very...
Part 2 Using Declarations Nullable Reference Types Asynchronous Enumerables 1. Using Declarations C# 8.0 introduces an alternative way to leverage using statements. This new way is called a using declaration. It reduces unnecessary code nesting and improves readability. Here is a...