UniqueId.ToCharArray Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Puts the UniqueId value into a char array.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
'Declaration Public Function ToCharArray ( _ chars As Char(), _ offset As Integer _ ) As Integer
Parameters
- chars
- Type:
System.Char
()
The char array.
- offset
- Type: System.Int32
Position in the char array to start inserting the UniqueId value.
| Exception | Condition |
|---|---|
| ArgumentNullException | chars is Nothing. |
| ArgumentOutOfRangeException | offset is less than zero or greater than the length of the array. |
| ArgumentException | guid and offset provide less than 16 valid bytes. |
Show: