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,911 questions

51,843 answers

573 users

How to convert StringBuilder to string in C#

3 Answers

0 votes
using System;
using System.Text;

public class Program
{
    public static void Main(string[] args)
    {
        StringBuilder sb = new StringBuilder("string builder");
 
        sb.Append(" to string");
 
        string s = sb.ToString();
        
        Console.WriteLine(s); 
    }
}

 
 
/*
run:
   
string builder to string
    
*/


answered Feb 24, 2015 by avibootz
edited Apr 11, 2024 by avibootz
0 votes
using System;
using System.Text;

public class Program
{
    public static void Main(string[] args)
    {
       StringBuilder sb = new StringBuilder();
 
        sb.Append("c#");
        sb.AppendLine();
        sb.Append("java").AppendLine();
        sb.Append("c++");
 
        string s = sb.ToString();
            
        Console.WriteLine(s);
    }
}

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

 



answered Apr 11, 2024 by avibootz
0 votes
using System;
using System.Text;

public class Program
{
    public static void Main(string[] args)
    {
       StringBuilder sb = new StringBuilder();
 
        sb.Append("c# ");
        sb.Append("java ");
        sb.Append("c ");
        sb.Append("c++ ");
 
        for (int i = 0; i < 3; i++) {
            sb.Append("!");
        }
 
        string s = sb.ToString();
            
        Console.WriteLine(s);
    }
}

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

 



answered Apr 11, 2024 by avibootz

Related questions

1 answer 164 views
1 answer 109 views
109 views asked Nov 18, 2021 by avibootz
1 answer 125 views
125 views asked Sep 10, 2020 by avibootz
1 answer 110 views
1 answer 146 views
1 answer 137 views
1 answer 138 views
...