System.StringBuilderExtensions.Clear C# (CSharp) Method

Clear() public static method

Clears the current contents of this StringBuilder
public static Clear ( this builder ) : void
builder this
return void
        public static void Clear(this StringBuilder builder)
        {
            builder.Length = 0;
        }
StringBuilderExtensions