String Constructor (array<Char>^, Int32, Int32)
.NET Framework (current version)
Initializes a new instance of the String class to the value indicated by an array of Unicode characters, a starting character position within that array, and a length.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
array<System::Char>^
An array of Unicode characters.
- startIndex
-
Type:
System::Int32
The starting position within value.
- length
-
Type:
System::Int32
The number of characters within value to use.
| Exception | Condition |
|---|---|
| ArgumentNullException | value is null. |
| ArgumentOutOfRangeException | startIndex or length is less than zero. -or- The sum of startIndex and length is greater than the number of elements in value. |
Note |
|---|
For examples and comprehensive usage information about this and other String constructor overloads, see the String constructor summary. |
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show:
