C# String String(SByte*, Int32, Int32)
Description
String String(SByte*, Int32, Int32)
initializes a new
instance of the String class to the value indicated by a specified pointer
to an array of 8-bit signed integers, a starting position within that array,
and a length.
Syntax
String.String(SByte*, Int32, Int32)
has the following syntax.
[CLSCompliantAttribute(false)]//from w ww . j a v a 2 s . co m
public String(
sbyte* value,
int startIndex,
int length
)
Parameters
String.String(SByte*, Int32, Int32)
has the following parameters.
value
- A pointer to an array of 8-bit signed integers.startIndex
- The starting position within value.length
- The number of characters within value to use.