Guid Constructor (Int32, Int16, Int16, Byte, Byte, Byte, Byte, Byte, Byte, Byte, Byte)
.NET Framework (current version)
Initializes a new instance of the Guid structure by using the specified integers and bytes.
Assembly: mscorlib (in mscorlib.dll)
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 )
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.
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.
The following example creates a GUID whose string representation is "0000000a-000b-000c-0001-020304050607".
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: