System.StringBuilderExtensions.Clear C# (CSharp) 메소드

Clear() 공개 정적인 메소드

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