SqlGuid Konstruktorer
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Initierar en ny instans av SqlGuid strukturen.
Överlagringar
| Name | Description |
|---|---|
| SqlGuid(Byte[]) |
Initierar en ny instans av strukturen med hjälp av SqlGuid den angivna bytematrisparametern. |
| SqlGuid(Guid) |
Initierar en ny instans av SqlGuid strukturen med den angivna Guid parametern. |
| SqlGuid(String) |
Initierar en ny instans av SqlGuid strukturen med den angivna String parametern. |
| SqlGuid(Int32, Int16, Int16, Byte, Byte, Byte, Byte, Byte, Byte, Byte, Byte) |
Initierar en ny instans av SqlGuid strukturen med de angivna värdena. |
SqlGuid(Byte[])
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
Initierar en ny instans av strukturen med hjälp av SqlGuid den angivna bytematrisparametern.
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())
Parametrar
- value
- Byte[]
En bytematris.
Se även
Gäller för
SqlGuid(Guid)
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- 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)
Parametrar
Se även
Gäller för
SqlGuid(String)
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- 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)
Parametrar
Se även
Gäller för
SqlGuid(Int32, Int16, Int16, Byte, Byte, Byte, Byte, Byte, Byte, Byte, Byte)
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
- Källa:
- SQLGuid.cs
Initierar en ny instans av SqlGuid strukturen med de angivna värdena.
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)
Parametrar
Kommentarer
Att ange enskilda byte på det här sättet kan användas för att kringgå byteordningsbegränsningar (storslutsordning eller lite endiansk byteordning) på vissa typer av datorer.