C# Program to Convert a List to a comma separated string

In this C# program, we will see how to Convert a List to a comma separated string.

C# Program to Convert a List to a comma separated string Code:

private static void Main(string[] args)
        {
            IList strings = new List { "One", "Two", "Three", "Four", "Five" };
            string result = string.Join(", ", strings);
            Console.Write(result);
            Console.ReadLine();
        }

C# Program to Convert a List to a comma separated string Output:

CSharp-Program-to-Convert-a-List-to-a-comma-separated-string

 
We are nothing without our users ! You can help us offer even more high quality content. Please share our page !
Best quality Asp .Net Ajax Control Toolkit tutorials.

Give your valuable comments.

Name
Email
Comment
8 + 3 =
 
About Us | Terms of Use | Privacy Policy | Disclaimer | Contact Us Copyright © 2012-2023 CodingFusion
75 Important SQL Server queries you should know