Renci.SshNet.Extensions.Clear C# (CSharp) 메소드

Clear() 공개 정적인 메소드

Clears the contents of the string builder.
public static Clear ( this value ) : void
value this /// The to clear. ///
리턴 void
        public static void Clear(this StringBuilder value)
        {
            value.Length = 0;
            value.Capacity = 16;
        }
    }