SqlInt16.Implicit Operator

Definition

Konverterar till en SqlInt16 struktur.

Överlagringar

Name Description
Implicit(SqlByte to SqlInt16)

Konverterar den angivna SqlByte strukturen till SqlInt16.

Implicit(Int16 to SqlInt16)

Konverterar det angivna korta heltalet till SqlInt16.

Implicit(SqlByte to SqlInt16)

Källa:
SQLInt16.cs
Källa:
SQLInt16.cs
Källa:
SQLInt16.cs
Källa:
SQLInt16.cs
Källa:
SQLInt16.cs

Konverterar den angivna SqlByte strukturen till 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

Parametrar

x
SqlByte

En SqlByte struktur.

Returer

En ny SqlInt16 struktur vars Value egenskap är lika med Value parameterns SqlByte egenskap.

Kommentarer

Motsvarande metod för den här operatorn är SqlByte.ToSqlInt16()

Se även

Gäller för

Implicit(Int16 to SqlInt16)

Källa:
SQLInt16.cs
Källa:
SQLInt16.cs
Källa:
SQLInt16.cs
Källa:
SQLInt16.cs
Källa:
SQLInt16.cs

Konverterar det angivna korta heltalet till 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

Parametrar

x
Int16

Ett kort heltalsvärde.

Returer

En SqlInt16 struktur med samma värde som det angivna korta heltalet.

Se även

Gäller för