Renci.SshNet.Extensions.Clear C# (CSharp) Méthode

Clear() public static méthode

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