UniqueId Constructor (Char(), Int32, Int32)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a new instance of this class starting from an offset within a char using a specified number of entries.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
Parameters
- chars
- Type:
System.Char
()
A char array that represents a Guid.
- offset
- Type: System.Int32
Offset position within the char array that represents a Guid.
- count
- Type: System.Int32
Number of array entries to use, starting from offset.
| Exception | Condition |
|---|---|
| ArgumentNullException | chars is Nothing. |
| ArgumentOutOfRangeException | offset less than zero or greater than the length of the array. |
| ArgumentOutOfRangeException | count less than zero or greater than the length of the array minus offset. |
| FormatException | count equals zero. |
Show: