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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,104 questions

40,777 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 81 views
1 answer 63 views
1 answer 95 views
3 answers 245 views
245 views asked Feb 24, 2015 by avibootz
...