Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,913 questions

51,845 answers

573 users

How to convert list to StringBuilder in C#

1 Answer

0 votes
using System;
using System.Text;
using System.Collections.Generic;

public static class Module1
{
    public static void Main()
    {
        List<string> lst = new List<string>() { "python", "c", "c++", "c#", "java" };

        StringBuilder sb = new StringBuilder();
        foreach (string s in lst) {
            sb.Append(s).Append(" ");
        }

        Console.WriteLine(sb);
    }
}




/*
run:
 
python c c++ c# java 

*/ 

 



answered Nov 18, 2021 by avibootz

Related questions

1 answer 158 views
1 answer 125 views
125 views asked Sep 10, 2020 by avibootz
1 answer 164 views
3 answers 348 views
348 views asked Feb 24, 2015 by avibootz
1 answer 84 views
1 answer 115 views
1 answer 95 views
...