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
enumeration friendly names

How to Display Friendly Names for Enumerations in C#?

Displaying friendly names for enumeration elements using the Description annotation

Read More