SqlInt32.Implicit Operator
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.
Konverterar till en SqlInt32 struktur.
Överlagringar
| Name | Description |
|---|---|
| Implicit(SqlByte to SqlInt32) | |
| Implicit(SqlInt16 to SqlInt32) | |
| Implicit(Int32 to SqlInt32) |
Konverterar det angivna heltalet till SqlInt32. |
Implicit(SqlByte to SqlInt32)
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
public:
static operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlByte x);
public static implicit operator System.Data.SqlTypes.SqlInt32(System.Data.SqlTypes.SqlByte x);
static member op_Implicit : System.Data.SqlTypes.SqlByte -> System.Data.SqlTypes.SqlInt32
Public Shared Widening Operator CType (x As SqlByte) As SqlInt32
Parametrar
Returer
En ny SqlInt32 struktur vars Value egenskap är Value lika med parameterns SqlByte egenskap.
Kommentarer
Motsvarande metod för den här operatorn är SqlByte.ToSqlInt32()
Se även
Gäller för
Implicit(SqlInt16 to SqlInt32)
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
public:
static operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlInt16 x);
public static implicit operator System.Data.SqlTypes.SqlInt32(System.Data.SqlTypes.SqlInt16 x);
static member op_Implicit : System.Data.SqlTypes.SqlInt16 -> System.Data.SqlTypes.SqlInt32
Public Shared Widening Operator CType (x As SqlInt16) As SqlInt32
Parametrar
Returer
En ny SqlInt32 struktur vars Value egenskap är Value lika med parameterns SqlInt16 egenskap.
Kommentarer
Motsvarande metod för den här operatorn är SqlInt16.ToSqlInt32()
Se även
Gäller för
Implicit(Int32 to SqlInt32)
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
- Källa:
- SQLInt32.cs
Konverterar det angivna heltalet till SqlInt32.
public:
static operator System::Data::SqlTypes::SqlInt32(int x);
public static implicit operator System.Data.SqlTypes.SqlInt32(int x);
static member op_Implicit : int -> System.Data.SqlTypes.SqlInt32
Public Shared Widening Operator CType (x As Integer) As SqlInt32
Parametrar
- x
- Int32
Ett heltalsvärde.
Returer
En ny SqlInt32 struktur vars värdeegenskap är lika med heltalsparametern.