Open In App

StringBuilder.ToString Method in C#

Improve
Improve
Like Article
Like
Save
Share
Report

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:



Last Updated : 29 Jan, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads