SqlInt32.Implicit 演算子

定義

SqlInt32 構造体に変換します。

オーバーロード

Implicit(SqlByte to SqlInt32)

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

Implicit(SqlInt16 to SqlInt32)

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

Implicit(Int32 to SqlInt32)

指定した整数を 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 構造。

戻り値

SqlInt32

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

注釈

この演算子の同等のメソッドは次のようになります。 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 構造。

戻り値

SqlInt32

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

注釈

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

こちらもご覧ください

適用対象

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

整数値。

戻り値

SqlInt32

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

こちらもご覧ください

適用対象