Create a StringBuilder which hold 100 characters. : StringBuilder « Development Class « C# / C Sharp






Create a StringBuilder which hold 100 characters.

  
 
using System;
using System.Text;

class StringApp {
    static void Main(string[] args) {
        StringBuilder myBuffer = new StringBuilder("My string data");
        Console.WriteLine(myBuffer.Capacity);
        myBuffer.Append(" contains some numerical data: ");
        myBuffer.AppendFormat("{0}, {1}.", 44, 99);
        Console.WriteLine(myBuffer.Capacity);
        Console.WriteLine(myBuffer);

    }
}

   
  








Related examples in the same category

1.Length and Indexer
2.Use StringBuilder to reverse a string
3.using the StringBuilder methods Replace, Insert, Append, AppendFormat, and Remove:
4.String ConcatenationString Concatenation
5.illustrates reading and writing string dataillustrates reading and writing string data
6.Replace char in a StringBuilder object
7.Replace Char with String
8.Represents a mutable string of characters.
9.Create StringBuilder class using the specified capacity.
10.Create StringBuilder class that starts with a specified capacity and can grow to a specified maximum.
11.Create a StringBuilder class using the specified string.
12.Create StringBuilder class using the specified string and capacity.
13.Create StringBuilder class from the specified substring and capacity.
14.Appends various data to StringBuilder
15.Appends a composite format string
16.Appends the default line terminator to the end of the current StringBuilder object.
17.Gets or sets the maximum number of characters that can be contained
18.Removes all characters from the current StringBuilder instance.
19.Copies characters to a destination Char array.
20.Inserts various data types
21.Removes the specified range of characters from this instance.
22.Replaces all occurrences of a specified character in this instance with another specified character.