Anonymous type is a feature in C# that was introduced with C# 3.0 which provides the developers the option to encapsulate the read only properties in to a object without explicitly defining the type....
There are times when you want to get the attributes of the enum values from your C# code for some display purpose . For example , consider the below enum Named “EmployeeDesignation”. publ...
If you have a Generic list of type string in C# and you wish to concatenate the items of the list to a single string along with the delimiter character , one of the easiest way to do it is using LINQ...