SqlGuid Construtores
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Inicializa uma nova instância da SqlGuid estrutura.
Sobrecargas
| Name | Description |
|---|---|
| SqlGuid(Byte[]) |
Inicializa uma nova instância da SqlGuid estrutura usando o parâmetro de bytes array fornecido. |
| SqlGuid(Guid) |
Inicializa uma nova instância da SqlGuid estrutura usando o parâmetro especificado Guid . |
| SqlGuid(String) |
Inicializa uma nova instância da SqlGuid estrutura usando o parâmetro especificado String . |
| SqlGuid(Int32, Int16, Int16, Byte, Byte, Byte, Byte, Byte, Byte, Byte, Byte) |
Inicializa uma nova instância da SqlGuid estrutura usando os valores especificados. |
SqlGuid(Byte[])
Inicializa uma nova instância da SqlGuid estrutura usando o parâmetro de bytes array fornecido.
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())
Parâmetros
- value
- Byte[]
Um array de bytes.
Ver também
Aplica-se a
SqlGuid(Guid)
public:
SqlGuid(Guid g);
public SqlGuid(Guid g);
new System.Data.SqlTypes.SqlGuid : Guid -> System.Data.SqlTypes.SqlGuid
Public Sub New (g As Guid)
Parâmetros
Ver também
Aplica-se a
SqlGuid(String)
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)
Parâmetros
Ver também
Aplica-se a
SqlGuid(Int32, Int16, Int16, Byte, Byte, Byte, Byte, Byte, Byte, Byte, Byte)
Inicializa uma nova instância da SqlGuid estrutura usando os valores especificados.
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)
Parâmetros
Observações
Especificar bytes individuais desta forma pode ser usado para contornar as restrições da ordem dos bytes (big-endian ou little-endian) em determinados tipos de computadores.