SqlInt64.Explicit Opérateur

Définition

Convertit en et à partir de SqlInt64.

Surcharges

Explicit(SqlString to SqlInt64)

Convertit le paramètre SqlString fourni en SqlInt64.

Explicit(SqlSingle to SqlInt64)

Convertit le paramètre SqlSingle fourni en SqlInt64.

Explicit(SqlMoney to SqlInt64)

Convertit le paramètre SqlMoney fourni en SqlInt64.

Explicit(SqlInt64 to Int64)

Convertit le paramètre SqlInt64 en entier long.

Explicit(SqlDouble to SqlInt64)

Convertit la structure SqlDouble fournie en SqlInt64.

Explicit(SqlDecimal to SqlInt64)

Convertit le paramètre SqlDecimal fourni en SqlInt64.

Explicit(SqlBoolean to SqlInt64)

Convertit le paramètre SqlBoolean fourni en SqlInt64.

Explicit(SqlString to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Convertit le paramètre SqlString fourni en SqlInt64.

public:
 static explicit operator System::Data::SqlTypes::SqlInt64(System::Data::SqlTypes::SqlString x);
public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlString x);
static member op_Explicit : System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlInt64
Public Shared Narrowing Operator CType (x As SqlString) As SqlInt64

Paramètres

x
SqlString

Objet SqlString à convertir.

Retours

Nouveau SqlInt64 dont la propriété Value est égale à la valeur représentée par le paramètre SqlString.

Voir aussi

S’applique à

Explicit(SqlSingle to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Convertit le paramètre SqlSingle fourni en SqlInt64.

public:
 static explicit operator System::Data::SqlTypes::SqlInt64(System::Data::SqlTypes::SqlSingle x);
public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlSingle x);
static member op_Explicit : System.Data.SqlTypes.SqlSingle -> System.Data.SqlTypes.SqlInt64
Public Shared Narrowing Operator CType (x As SqlSingle) As SqlInt64

Paramètres

x
SqlSingle

Structure SqlSingle à convertir.

Retours

Nouvelle structure SqlInt64 dont la propriété Value contient la partie entière du paramètre SqlSingle.

Voir aussi

S’applique à

Explicit(SqlMoney to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Convertit le paramètre SqlMoney fourni en SqlInt64.

public:
 static explicit operator System::Data::SqlTypes::SqlInt64(System::Data::SqlTypes::SqlMoney x);
public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlMoney x);
static member op_Explicit : System.Data.SqlTypes.SqlMoney -> System.Data.SqlTypes.SqlInt64
Public Shared Narrowing Operator CType (x As SqlMoney) As SqlInt64

Paramètres

x
SqlMoney

Structure SqlMoney à convertir.

Retours

Nouvelle structure SqlInt64 dont la propriété Value est égale à la partie entière du paramètre SqlMoney.

Voir aussi

S’applique à

Explicit(SqlInt64 to Int64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Convertit le paramètre SqlInt64 en entier long.

public:
 static explicit operator long(System::Data::SqlTypes::SqlInt64 x);
public static explicit operator long (System.Data.SqlTypes.SqlInt64 x);
static member op_Explicit : System.Data.SqlTypes.SqlInt64 -> int64
Public Shared Narrowing Operator CType (x As SqlInt64) As Long

Paramètres

x
SqlInt64

Structure SqlInt64.

Retours

Nouvelle valeur de type Entier long égale à la propriété Value de SqlInt64.

Voir aussi

S’applique à

Explicit(SqlDouble to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Convertit la structure SqlDouble fournie en SqlInt64.

public:
 static explicit operator System::Data::SqlTypes::SqlInt64(System::Data::SqlTypes::SqlDouble x);
public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlDouble x);
static member op_Explicit : System.Data.SqlTypes.SqlDouble -> System.Data.SqlTypes.SqlInt64
Public Shared Narrowing Operator CType (x As SqlDouble) As SqlInt64

Paramètres

x
SqlDouble

Structure SqlDouble à convertir.

Retours

Nouvelle structure SqlInt64 dont la propriété Value est égale à la partie entière du paramètre SqlDouble.

Voir aussi

S’applique à

Explicit(SqlDecimal to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Convertit le paramètre SqlDecimal fourni en SqlInt64.

public:
 static explicit operator System::Data::SqlTypes::SqlInt64(System::Data::SqlTypes::SqlDecimal x);
public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlDecimal x);
static member op_Explicit : System.Data.SqlTypes.SqlDecimal -> System.Data.SqlTypes.SqlInt64
Public Shared Narrowing Operator CType (x As SqlDecimal) As SqlInt64

Paramètres

x
SqlDecimal

Structure SqlDecimal à convertir.

Retours

Nouvelle structure SqlInt64 dont la propriété Value est égale à la partie entière du paramètre SqlDecimal.

Voir aussi

S’applique à

Explicit(SqlBoolean to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Convertit le paramètre SqlBoolean fourni en SqlInt64.

public:
 static explicit operator System::Data::SqlTypes::SqlInt64(System::Data::SqlTypes::SqlBoolean x);
public static explicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlBoolean x);
static member op_Explicit : System.Data.SqlTypes.SqlBoolean -> System.Data.SqlTypes.SqlInt64
Public Shared Narrowing Operator CType (x As SqlBoolean) As SqlInt64

Paramètres

x
SqlBoolean

Structure SqlBoolean à convertir.

Retours

Nouvelle structure SqlInt64 dont la propriété Value est égale à la propriété ByteValue du paramètre SqlBoolean.

Voir aussi

S’applique à