Renci.SshNet.Extensions.Clear C# (CSharp) Method

Clear() public static method

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