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

 
Best quality Asp .Net Ajax Control Toolkit tutorials.

Give your valuable comments.

Name
Email
Comment
7 + 1 =
 

About Us | Terms of Use | Privacy Policy | Disclaimer | Contact Us Copyright © 2012-2024 CodingFusion
50+ C# Programs for beginners to practice