Tag: CSharp.Dotnet
C#.NET Interview Questions and Answers – Part 1
C#.NET Interview Questions and Answers – Part 1 1. What is an Assembly in .NET? An assembly is a unit of deployment in .NET. The assembly can either be an exe file or a dll (library). When there is an entry point for the assembly, then it’s an exe else it is a dll file. The advantage of the dll is that it can be…
How to convert List<string> to string with comma delimiter in C# ?
If you need to convert a collection (for example List of string) to string separated with the Comma as delimiter , you can either use the string.join method or aggregate method as shwon below. How to convert List<string> to string with comma delimiter in C# ?