SqlInt32.Implicit Operator

定義

SqlInt32構造体に変換します。

オーバーロード

名前 説明
Implicit(Int32 to SqlInt32)

指定された整数を SqlInt32に変換します。

Implicit(SqlByte to SqlInt32)

指定した SqlByte プロパティを SqlInt32に変換します。

Implicit(SqlInt16 to SqlInt32)

指定した SqlInt16SqlInt32に変換します。

Implicit(Int32 to SqlInt32)

指定された整数を 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

パラメーター

x
Int32

整数値。

返品

Value プロパティが整数パラメーターと等しい新しい SqlInt32 構造体。

こちらもご覧ください

適用対象

Implicit(SqlByte to SqlInt32)

指定した SqlByte プロパティを SqlInt32に変換します。

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

パラメーター

x
SqlByte

SqlByte 構造。

返品

Value プロパティが SqlByte パラメーターのValue プロパティと等しい新しいSqlInt32構造体。

注釈

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

こちらもご覧ください

適用対象

Implicit(SqlInt16 to SqlInt32)

指定した SqlInt16SqlInt32に変換します。

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

パラメーター

x
SqlInt16

SqlInt16 構造。

返品

Value プロパティが SqlInt16 パラメーターのValue プロパティと等しい新しいSqlInt32構造体。

注釈

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

こちらもご覧ください

適用対象