SqlDecimal.Implicit 演算子

定義

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

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

指定した 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

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

指定した 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

指定した 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

指定した 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

指定した 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()

こちらもご覧ください

適用対象