StringBuilder Constructor (String, Int32)

StringBuilder Constructor (String, Int32)

[ 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 and capacity.

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

'Declaration
Public Sub New ( _
	value As String, _
	capacity As Integer _
)

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).
capacity
Type: System.Int32
The suggested starting size of the StringBuilder.

ExceptionCondition
ArgumentOutOfRangeException

capacity is less than zero.

If capacity is zero, the implementation-specific default capacity is used.

The following code example demonstrates how to call the StringBuilder constructor with an initial string and a specified capacity.


Dim initialString As String = "Initial string. "
Dim capacity As Integer = 255
Dim stringBuilder As New StringBuilder(initialString, capacity)


Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft