Delegates are used to create references to different methods in C#. Creating these references aims to make…
.NET
Blogs on ASP.NET, .NET Core, .NET framework, .NET 5, .NET 6, .NET 7
Delegates in C#/.NET seemed like an “extra” thing when I first learned about them. But, as I…
A Dictionary in C# is a collection of key-value pairs, where each key is associated with a unique value providing and easy and quick retrieval.
Discover the power of lists in C#! Learn how to declare, manipulate, and store data in lists with code examples in this beginner’s guide.
For Loops are used to execute a block of code for a set number of times optimizing code and saving you multiple lines of code.
If you are like me and have a hard time wrapping your head around arrays in C,…
In C#, string formatting is like combining different things such as strings, values, and expressions to create…
If you’re a developer working with ASP.NET, you’ve likely heard the term “middleware” thrown around quite a…
In C#, the Switch statement is the type of control flow statement to compare a single expression…
A lot of times you come across an error “Server Error in ‘/’ Application” while working on…