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 177 views
1 answer 131 views
131 views asked Nov 18, 2021 by avibootz
1 answer 137 views
137 views asked Sep 10, 2020 by avibootz
1 answer 127 views
1 answer 165 views
1 answer 151 views
1 answer 152 views
...