Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Initializes a new instance of the Sys.StringBuilder class.
var stringBuilderVar = new StringBuilder(initialText);
Arguments
- initialText
(Optional) The string that is used to initialize the value of the instance. If the value is null, the new StringBuilder instance will contain an empty string ("").
Remarks
You can specify a string in the optional initialText parameter to initialize the value of the StringBuilder instance.