StringBuilder: write line : StringBuffer StringBuilder « Language Basics « C# / C Sharp






StringBuilder: write line

StringBuilder: write line

using System;
using System.Text;

public class SampleBuilder
{

    public static void Main()
    {

        StringBuilder sb = new StringBuilder("test string");
        int length = 0;
    
        length = sb.Length;
        Console.WriteLine("The result is: '{0}'", sb);
        Console.WriteLine("The length is: {0}", length);
    
        sb.Length = 4;
        length = sb.Length;
        Console.WriteLine("The result is: '{0}'", sb);
        Console.WriteLine("The length is: {0}", length);
    
        sb.Length = 20;
        length = sb.Length;
        Console.WriteLine("The result is: '{0}'", sb);
        Console.WriteLine("The length is: {0}", length);

    }
}

           
       








Related examples in the same category

1.StringBuilder EnsureCapacity methodStringBuilder EnsureCapacity method
2.Demonstrating StringBuilder AppendFormatDemonstrating StringBuilder AppendFormat
3.StringBuilder's properties for different constructorsStringBuilder's properties for different constructors
4.StringBuilder append: int, char, string, boolean at specific positionStringBuilder append: int, char, string, boolean at specific position
5.StringBuilder AppendFormat() method to add a formatted string containing a floating point number to myStringBuilderStringBuilder AppendFormat() method to add a formatted string containing a floating point number to myStringBuilder
6.StringBuilder Insert(): insert strings into myStringBuilderStringBuilder Insert(): insert strings into myStringBuilder
7.Use the Remove() method to remove part of StringBuilderUse the Remove() method to remove part of StringBuilder
8.Replace(): replace part of myStringBuilderReplace(): replace part of myStringBuilder
9.ToString(): convert myStringBuilder to a stringToString(): convert myStringBuilder to a string
10.illustrates the use of StringBuilder objectsillustrates the use of StringBuilder objects
11.StringBuffer: Replacing CharactersStringBuffer: Replacing Characters
12.StringBuilder foreach StringBuilder foreach