Deploy Asp.Net Core Web Api on IIS

Deploy ASP.NET Core Web API on IIS

Deploying ASP.NET Core Web API on IIS is an easy task once you understand and follow the correct steps to prepare your development and deployment environment. For this article, I …

Read More
NET-Articles-of-December-Week-4.png

.NET Articles of December – Week #4

This is a weekly aggregation of the latest and most useful .NET articles and blog posts that have been forged and published by the .NET community professionals. So let’s find …

Read More

.NET Articles of December – Week #3

This is a weekly aggregation of the latest and most useful .NET articles and blog posts that have been forged and published by the .NET community professionals. So let’s find …

Read More
.NET Articles of December Week 2

.NET Articles of December Week #2

This is a weekly aggregation of the latest and most useful .NET articles and blog posts that have been forged and published by the .NET community professionals. So let’s find …

Read More
curated-.net-developers-and-blogs-to-follow-in-2021 - codingsonata.com

Curated .NET Developers and Blogs to Follow in 2021

Whether you are planning to learn .NET from scratch or you are already a .NET developer but you want to expand your knowledge in one of the greatest Microsoft Technologies …

Read More
how to dump object for debugging purposes in c# - codingsonata.com

How to Dump Object for Debugging Purposes in C#?

Explaining 3 ways to dump object in c# , including the Object Dumper, Json Serializer and Yaml Serializer

Read More
Exception Handling in C#

Exception Handling in C#

Exception handling is a very important topic that is sometimes not properly understood or less used. In this article, I will explain to you about the Exceptions, and how to …

Read More
csharp async await tutorial

Your Ultimate async / await Tutorial in C#

You might have already heard about asynchronous programming or async / await, either in .Net or some other language. In this article I will try to explain it to you, …

Read More
Generics in C#

Demystifying Generics in C#

Generics is a great concept in programming languages that was added to .Net 2.0 , it introduces the parameter T to types and methods. Generics improve code reusability, enforces type safety and prevents performance overhead of boxing/unboxing.

Read More
strings-stringbuilder-csharp

The Difference Between String and StringBuilder in C#

In this article, I will be explaining the difference between using String and StringBuilder when dealing with your string values. and in which cases you should never use String. and other cases where StringBuilder is not the optimal solution.

Read More