Answers for "c# join list<string"

C#
8

c# list join

List<string> names = new List<string>() { "John", "Anna", "Monica" };
var result = String.Join(", ", names.ToArray());
Posted by: Guest on October-20-2020
0

C# program that joins List of strings

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // Create a List of 3 strings.
        var list = new List<string>() { "cat", "dog", "rat" };
        // Join the strings from the List.
        string joined = string.Join<string>("*", list);
        // Display.
        Console.WriteLine(joined);
    }
}
Posted by: Guest on February-09-2022

C# Answers by Framework

Browse Popular Code Answers by Language