SqlDecimal.Implicit Operator

定義

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

オーバーロード

名前 説明
Implicit(SqlMoney to SqlDecimal)

SqlMoney オペランドを SqlDecimalに変換します。

Implicit(Int64 to SqlDecimal)

指定した Int64 構造体を SqlDecimalに変換します。

Implicit(Decimal to SqlDecimal)

Decimal 値を SqlDecimalに変換します。

Implicit(SqlInt64 to SqlDecimal)

指定した SqlInt64 構造体を SqlDecimal に変換します。

Implicit(SqlInt32 to SqlDecimal)

指定した SqlInt32 構造体を SqlDecimalに変換します。

Implicit(SqlInt16 to SqlDecimal)

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

Implicit(SqlByte to SqlDecimal)

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

Implicit(SqlMoney to SqlDecimal)

ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs

SqlMoney オペランドを SqlDecimalに変換します。

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

パラメーター

x
SqlMoney

変換する SqlMoney 構造体。

返品

SqlDecimal パラメーターのValueと等しいValueを持つ新しいSqlMoney構造体。

注釈

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

こちらもご覧ください

適用対象

Implicit(Int64 to SqlDecimal)

ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs

指定した Int64 構造体を SqlDecimalに変換します。

public:
 static operator System::Data::SqlTypes::SqlDecimal(long x);
public static implicit operator System.Data.SqlTypes.SqlDecimal(long x);
static member op_Implicit : int64 -> System.Data.SqlTypes.SqlDecimal
Public Shared Widening Operator CType (x As Long) As SqlDecimal

パラメーター

x
Int64

変換する Int64 構造体。

返品

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

注釈

この演算子の同等のメソッドは次のようになります。 SqlDecimal.Value

こちらもご覧ください

適用対象

Implicit(Decimal to SqlDecimal)

ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs

Decimal 値を SqlDecimalに変換します。

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

パラメーター

x
Decimal

変換する Decimal 値。

返品

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

こちらもご覧ください

適用対象

Implicit(SqlInt64 to SqlDecimal)

ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs

指定した SqlInt64 構造体を SqlDecimal に変換します。

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

パラメーター

x
SqlInt64

変換する SqlInt64 構造体。

返品

SqlDecimal パラメーターのValueと等しいValueを持つ新しいSqlInt64構造体。

注釈

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

こちらもご覧ください

適用対象

Implicit(SqlInt32 to SqlDecimal)

ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs

指定した SqlInt32 構造体を SqlDecimalに変換します。

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

パラメーター

x
SqlInt32

変換する SqlInt32 構造体。

返品

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

注釈

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

こちらもご覧ください

適用対象

Implicit(SqlInt16 to SqlDecimal)

ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs

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

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

パラメーター

x
SqlInt16

変換する SqlInt16 構造体。

返品

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

注釈

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

こちらもご覧ください

適用対象

Implicit(SqlByte to SqlDecimal)

ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs
ソース:
SQLDecimal.cs

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

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

パラメーター

x
SqlByte

変換する SqlByte 構造体。

返品

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

注釈

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

こちらもご覧ください

適用対象