SqlGuid Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the SqlGuid structure.
Overloads
SqlGuid(Byte[]) |
Initializes a new instance of the SqlGuid structure using the supplied byte array parameter. |
SqlGuid(Guid) |
Initializes a new instance of the SqlGuid structure using the specified Guid parameter. |
SqlGuid(String) |
Initializes a new instance of the SqlGuid structure using the specified String parameter. |
SqlGuid(Int32, Int16, Int16, Byte, Byte, Byte, Byte, Byte, Byte, Byte, Byte) |
Initializes a new instance of the SqlGuid structure using the specified values. |
SqlGuid(Byte[])
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
Initializes a new instance of the SqlGuid structure using the supplied byte array parameter.
public:
SqlGuid(cli::array <System::Byte> ^ value);
public SqlGuid (byte[] value);
new System.Data.SqlTypes.SqlGuid : byte[] -> System.Data.SqlTypes.SqlGuid
Public Sub New (value As Byte())
Parameters
- value
- Byte[]
A byte array.
See also
Applies to
SqlGuid(Guid)
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
public:
SqlGuid(Guid g);
public SqlGuid (Guid g);
new System.Data.SqlTypes.SqlGuid : Guid -> System.Data.SqlTypes.SqlGuid
Public Sub New (g As Guid)
Parameters
See also
Applies to
SqlGuid(String)
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
public:
SqlGuid(System::String ^ s);
public SqlGuid (string s);
new System.Data.SqlTypes.SqlGuid : string -> System.Data.SqlTypes.SqlGuid
Public Sub New (s As String)
Parameters
See also
Applies to
SqlGuid(Int32, Int16, Int16, Byte, Byte, Byte, Byte, Byte, Byte, Byte, Byte)
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
Initializes a new instance of the SqlGuid structure using the specified values.
public:
SqlGuid(int a, short b, short c, System::Byte d, System::Byte e, System::Byte f, System::Byte g, System::Byte h, System::Byte i, System::Byte j, System::Byte k);
public SqlGuid (int a, short b, short c, byte d, byte e, byte f, byte g, byte h, byte i, byte j, byte k);
new System.Data.SqlTypes.SqlGuid : int * int16 * int16 * byte * byte * byte * byte * byte * byte * byte * byte -> System.Data.SqlTypes.SqlGuid
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
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.