Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Initializes a new instance of the Guid structure by 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
)
public:
Guid(
int a,
short b,
short c,
unsigned char d,
unsigned char e,
unsigned char f,
unsigned char g,
unsigned char h,
unsigned char i,
unsigned char j,
unsigned char k
)
new :
a:int *
b:int16 *
c:int16 *
d:byte *
e:byte *
f:byte *
g:byte *
h:byte *
i:byte *
j:byte *
k:byte -> Guid
public function Guid(
a : int,
b : short,
c : short,
d : byte,
e : byte,
f : byte,
g : byte,
h : byte,
i : byte,
j : byte,
k : 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.
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.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.