Asynchronous vs Multi-threaded in C#
Understanding Asynchronous and Multithreading Operations under the hood in .NET with C#

Search for a command to run...
Articles tagged with #csharp
Understanding Asynchronous and Multithreading Operations under the hood in .NET with C#

VS Code is one of the most versatile and lightweight code editors out there and today in this blog post we will set how we can set up VS Code to create Asp.Net Core based Web APIs. We will see how to create a new solution, and projects, add Nuget pac...

How to guide for connecting to dockerized instances of PostgreSQL, Redis and MongoDB from Asp.NET Core Web API project

Caching is the practice of storing data in a temporary storage area, called a cache, to reduce the number of times the data must be retrieved from a slower data store. It is an important technique in web development because it can improve the perform...

Unit testing is a key practice that guarantees all basic software requirements are met when we develop are code and it also makes sure that any new modifications don't regress the existing functionalities. Today, we will use Nunit and Moq frameworks ...

C# has evolved a lot in recent years with much more efficient and logical ways of doing things than before. In this article, I am going to share some of the best practices for writing cleaner C# code which will help in your next code review and also ...
