SqlInt16.Implicit Operatore

Definizione

Effettua la conversione a una struttura SqlInt16.

Overload

Implicit(SqlByte to SqlInt16)

Converte la struttura SqlByte fornita in SqlInt16.

Implicit(Int16 to SqlInt16)

Converte il valore short integer specificato in SqlInt16 .

Implicit(SqlByte to SqlInt16)

Origine:
SQLInt16.cs
Origine:
SQLInt16.cs
Origine:
SQLInt16.cs

Converte la struttura SqlByte fornita in SqlInt16.

public:
 static operator System::Data::SqlTypes::SqlInt16(System::Data::SqlTypes::SqlByte x);
public static implicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlByte x);
static member op_Implicit : System.Data.SqlTypes.SqlByte -> System.Data.SqlTypes.SqlInt16
Public Shared Widening Operator CType (x As SqlByte) As SqlInt16

Parametri

x
SqlByte

Struttura SqlByte.

Restituisce

Nuova struttura SqlInt16 la cui proprietà Value è uguale alla proprietà Value del parametro SqlByte.

Commenti

Il metodo equivalente per questo operatore è SqlByte.ToSqlInt16()

Vedi anche

Si applica a

Implicit(Int16 to SqlInt16)

Origine:
SQLInt16.cs
Origine:
SQLInt16.cs
Origine:
SQLInt16.cs

Converte il valore short integer specificato in SqlInt16 .

public:
 static operator System::Data::SqlTypes::SqlInt16(short x);
public static implicit operator System.Data.SqlTypes.SqlInt16 (short x);
static member op_Implicit : int16 -> System.Data.SqlTypes.SqlInt16
Public Shared Widening Operator CType (x As Short) As SqlInt16

Parametri

x
Int16

Valore short integer.

Restituisce

Struttura SqlInt16 con lo stesso valore del valore short integer specificato.

Vedi anche

Si applica a