Guid Constructor (Int32, Int16, Int16, Byte, Byte, Byte, Byte, Byte, Byte, Byte, Byte)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Initializes a new instance of the Guid class using the specified integers and bytes.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Sub New ( _
a As Integer, _
b As Short, _
c As Short, _
d As Byte, _
e As Byte, _
f As Byte, _
g As Byte, _
h As Byte, _
i As Byte, _
j As Byte, _
k As Byte _
)
public Guid(
int a,
short b,
short c,
byte d,
byte e,
byte f,
byte g,
byte h,
byte i,
byte j,
byte k
)
Parameters
- a
Type: System.Int32
The first 4 bytes of the GUID.
- b
Type: System.Int16
The next 2 bytes of the GUID.
- c
Type: System.Int16
The next 2 bytes of the GUID.
- d
Type: System.Byte
The next byte of the GUID.
- e
Type: System.Byte
The next byte of the GUID.
- f
Type: System.Byte
The next byte of the GUID.
- g
Type: System.Byte
The next byte of the GUID.
- h
Type: System.Byte
The next byte of the GUID.
- i
Type: System.Byte
The next byte of the GUID.
- j
Type: System.Byte
The next byte of the GUID.
- k
Type: System.Byte
The next byte of the GUID.
Remarks
Specifying individual bytes in this manner can be used to circumvent byte order restrictions (big-endian or little-endian byte order) on particular types of computers.
Examples
Guid(0xa,0xb,0xc,0,1,2,3,4,5,6,7) creates a Guid that corresponds to "0000000a-000b-000c-0001-020304050607".
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.