NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

StringBuilder Constructor (String)

Initializes a new instance of the StringBuilder class from the specified string.

[Visual Basic]
Overloads Public Sub New( _
   ByVal value As String _
)
[C#]
public StringBuilder(
   string value
);
[C++]
public: StringBuilder(
   String* value
);
[JScript]
public function StringBuilder(
   value : String
);

Parameters

value
The string used to initialize the new instance. If value is a null reference (in Visual Basic Nothing), the new StringBuilder will contain the empty string (that is, it contains Empty).

Remarks

If value is a null reference (Nothing), the new StringBuilder will contain the empty string (that is, it contains Empty).

See Also

StringBuilder Class | StringBuilder Members | System.Text Namespace | StringBuilder Constructor Overload List