ASP.NET Core is the new web framework for the Microsoft technologies. We’ll see the benefits of using the framework.
How c# compiler looks at switch case statements
Every developer writes a switch case statement at least once in their life of programming but as he/she understands the switch is no longer maintainable they tend to look for patterns and do refactoring.
In this post, we’ll see what’s actually inside of a switch case statement.
Awaiting A Method Vs Awaiting A Task
What is the difference between awaiting a method vs await a task in c#. In this post, we’ll explore the major difference between awaiting a method and awaiting a Task.