StringBuilder Constructor (String)

StringBuilder Constructor (String)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

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

Namespace:  System.Text
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
Public Sub New ( _
	value As String _
)

Parameters

value
Type: System.String
The string used to initialize the value of the instance. If value is Nothing, the new StringBuilder will contain the empty string (that is, it contains Empty).

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

The following code example demonstrates how to call the StringBuilder constructor with the specified string.


Dim initialString As String = "Initial string."
Dim stringBuilder As New StringBuilder(initialString)


Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft