SqlDecimal.Implicit Opérateur

Définition

Convertit la structure fournie en SqlDecimal.

Surcharges

Nom Description
Implicit(SqlMoney to SqlDecimal)

Convertit l’opérande SqlMoney en SqlDecimal.

Implicit(Int64 to SqlDecimal)

Convertit la structure fournie Int64 en SqlDecimal.

Implicit(Decimal to SqlDecimal)

Convertit la Decimal valeur en SqlDecimal.

Implicit(SqlInt64 to SqlDecimal)

Convertit la structure fournie SqlInt64 en SqlDecimal.

Implicit(SqlInt32 to SqlDecimal)

Convertit la structure fournie SqlInt32 en SqlDecimal.

Implicit(SqlInt16 to SqlDecimal)

Convertit la structure fournie SqlInt16 en SqlDecimal.

Implicit(SqlByte to SqlDecimal)

Convertit la structure fournie SqlByte en SqlDecimal.

Implicit(SqlMoney to SqlDecimal)

Convertit l’opérande SqlMoney en 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

Paramètres

x
SqlMoney

Structure SqlMoney à convertir.

Retours

Nouvelle SqlDecimal structure dont Value la valeur est égale au ValueSqlMoney paramètre.

Remarques

La méthode équivalente pour cet opérateur est SqlMoney.ToSqlDecimal()

Voir aussi

S’applique à

Implicit(Int64 to SqlDecimal)

Convertit la structure fournie Int64 en 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

Paramètres

x
Int64

Structure Int64 à convertir.

Retours

Nouvelle SqlDecimal structure dont Value la propriété est égale à la valeur du Int64 paramètre.

Remarques

La méthode équivalente pour cet opérateur est SqlDecimal.Value

Voir aussi

S’applique à

Implicit(Decimal to SqlDecimal)

Convertit la Decimal valeur en 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

Paramètres

x
Decimal

Valeur Decimal à convertir.

Retours

Nouvelle SqlDecimal structure dont Value la propriété est égale à la valeur du Decimal paramètre.

Voir aussi

S’applique à

Implicit(SqlInt64 to SqlDecimal)

Convertit la structure fournie SqlInt64 en 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

Paramètres

x
SqlInt64

Structure SqlInt64 à convertir.

Retours

Nouvelle SqlDecimal structure dont Value la valeur est égale au ValueSqlInt64 paramètre.

Remarques

La méthode équivalente pour cet opérateur est SqlInt64.ToSqlDecimal()

Voir aussi

S’applique à

Implicit(SqlInt32 to SqlDecimal)

Convertit la structure fournie SqlInt32 en 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

Paramètres

x
SqlInt32

Structure SqlInt32 à convertir.

Retours

Nouvelle SqlDecimal structure dont Value la propriété est égale à la Value propriété du SqlInt32 paramètre.

Remarques

La méthode équivalente pour cet opérateur est SqlInt32.ToSqlDecimal()

Voir aussi

S’applique à

Implicit(SqlInt16 to SqlDecimal)

Convertit la structure fournie SqlInt16 en 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

Paramètres

x
SqlInt16

Structure SqlInt16 à convertir.

Retours

Nouvelle SqlDecimal structure dont Value la propriété est égale à la Value propriété du SqlInt16 paramètre.

Remarques

La méthode équivalente pour cet opérateur est SqlInt16.ToSqlDecimal()

Voir aussi

S’applique à

Implicit(SqlByte to SqlDecimal)

Convertit la structure fournie SqlByte en 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

Paramètres

x
SqlByte

Structure SqlByte à convertir.

Retours

Nouvelle SqlDecimal structure dont Value la propriété est égale à la Value propriété du SqlByte paramètre.

Remarques

La méthode équivalente pour cet opérateur est SqlByte.ToSqlDecimal()

Voir aussi

S’applique à