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
extension methods in dotnet

Understanding Extension Methods in .Net

Extension methods is a great feature in .Net that allows developers to add or extend methods of existing types or classes and call them naturally, as if they are part of these types or classes

Read More