Skip to content
Related Articles
Open in App
Not now

Related Articles

StringBuilder.ToString Method in C#

Improve Article
Save Article
Like Article
  • Last Updated : 29 Jan, 2019
Improve Article
Save Article
Like Article

This method is used to converts the value of this instance to a String. A new String object is created and initialized to get the character sequence from this StringBuilder object and then String is returned by ToString(). Subsequent changes to this sequence contained by Object do not affect the contents of the String.

Syntax: public override string ToString ();

Return Value: This method returns the String representing the data contained by StringBuilder Object.

Below programs illustrate the StringBuilder.ToString() method:

Example 1:




// C# program to demonstrate
// the ToString() Method
using System;
using System.Text;
  
class GFG {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // create a StringBuilder object
        // with a String pass as parameter
        StringBuilder str
          = new StringBuilder("GeeksForGeeks");
  
        // print string
        Console.WriteLine("String contains = "
                            + str.ToString());
    }
}

Output:

String contains = GeeksForGeeks

Example 2:




// C# program to demonstrate
// the ToString() Method
using System;
using System.Text;
  
class GFG {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // create a StringBuilder object
        // with a String pass as parameter
        StringBuilder str = 
             new StringBuilder("GeeksforGeeks Contribute");
  
              
                  
        // print string
        Console.WriteLine("String contains = "
                          + str.ToString());
    }
}

Output:

String contains = GeeksforGeeks Contribute

Reference:


My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!