SqlInt16.Implicit 演算子

定義

SqlInt16 構造体に変換します。

オーバーロード

Implicit(SqlByte to SqlInt16)

指定した SqlByte 構造体を SqlInt16 に変換します。

Implicit(Int16 to SqlInt16)

指定した短整数を SqlInt16 に変換します。

Implicit(SqlByte to SqlInt16)

ソース:
SQLInt16.cs
ソース:
SQLInt16.cs
ソース:
SQLInt16.cs

指定した SqlByte 構造体を 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

パラメーター

x
SqlByte

SqlByte 構造。

戻り値

SqlInt16 パラメーターの Value プロパティと等しい Value プロパティを持つ新しい SqlByte 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlByte.ToSqlInt16()

こちらもご覧ください

適用対象

Implicit(Int16 to SqlInt16)

ソース:
SQLInt16.cs
ソース:
SQLInt16.cs
ソース:
SQLInt16.cs

指定した短整数を 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

パラメーター

x
Int16

短整数値。

戻り値

指定した短整数と同じ値を持つ SqlInt16 構造体。

こちらもご覧ください

適用対象