SqlDecimal.Implicit Opérateur

Définition

Convertit la structure fournie en SqlDecimal.

Surcharges

Implicit(SqlMoney to SqlDecimal)

Convertit l'opérande SqlMoney en SqlDecimal.

Implicit(Int64 to SqlDecimal)

Convertit la structure Int64 fournie en SqlDecimal.

Implicit(Decimal to SqlDecimal)

Convertit la valeur Decimal en SqlDecimal.

Implicit(SqlInt64 to SqlDecimal)

Convertit la structure SqlInt64 fournie en SqlDecimal.

Implicit(SqlInt32 to SqlDecimal)

Convertit la structure SqlInt32 fournie en SqlDecimal.

Implicit(SqlInt16 to SqlDecimal)

Convertit la structure SqlInt16 fournie en SqlDecimal.

Implicit(SqlByte to SqlDecimal)

Convertit la structure SqlByte fournie en SqlDecimal.

Implicit(SqlMoney to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

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 structure SqlDecimal dont la propriété Value est égale à la propriété Value du paramètre SqlMoney.

Remarques

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

Voir aussi

S’applique à

Implicit(Int64 to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

Convertit la structure Int64 fournie 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 structure SqlDecimal dont la propriété Value est égale à la valeur du paramètre Int64.

Remarques

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

Voir aussi

S’applique à

Implicit(Decimal to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

Convertit la valeur Decimal 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 structure SqlDecimal dont la propriété Value est égale à la valeur du paramètre Decimal.

Voir aussi

S’applique à

Implicit(SqlInt64 to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

Convertit la structure SqlInt64 fournie 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 structure SqlDecimal dont la propriété Value est égale à la propriété Value du paramètre SqlInt64.

Remarques

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

Voir aussi

S’applique à

Implicit(SqlInt32 to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

Convertit la structure SqlInt32 fournie 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 structure SqlDecimal dont la propriété Value est égale à la propriété Value du paramètre SqlInt32.

Remarques

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

Voir aussi

S’applique à

Implicit(SqlInt16 to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

Convertit la structure SqlInt16 fournie 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 structure SqlDecimal dont la propriété Value est égale à la propriété Value du paramètre SqlInt16.

Remarques

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

Voir aussi

S’applique à

Implicit(SqlByte to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

Convertit la structure SqlByte fournie 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 structure SqlDecimal dont la propriété Value est égale à la propriété Value du paramètre SqlByte.

Remarques

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

Voir aussi

S’applique à