SqlInt64.Explicit Operador

Definición

Convierte a una estructura SqlInt64 y viceversa.

Sobrecargas

Explicit(SqlString to SqlInt64)

Convierte el parámetro SqlString proporcionado en SqlInt64.

Explicit(SqlSingle to SqlInt64)

Convierte el parámetro SqlSingle proporcionado en SqlInt64.

Explicit(SqlMoney to SqlInt64)

Convierte el parámetro SqlMoney proporcionado en SqlInt64.

Explicit(SqlInt64 to Int64)

Convierte el parámetro SqlInt64 en un valor largo.

Explicit(SqlDouble to SqlInt64)

Convierte la estructura SqlDouble proporcionada en SqlInt64.

Explicit(SqlDecimal to SqlInt64)

Convierte el parámetro SqlDecimal proporcionado en SqlInt64.

Explicit(SqlBoolean to SqlInt64)

Convierte el parámetro SqlBoolean proporcionado en SqlInt64.

Explicit(SqlString to SqlInt64)

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

Convierte el parámetro SqlString proporcionado 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

Parámetros

x
SqlString

El objeto SqlString que se va a convertir.

Devoluciones

Nueva estructura SqlInt64 cuya propiedad Value es igual al valor representado por el parámetro SqlString.

Consulte también

Se aplica a

Explicit(SqlSingle to SqlInt64)

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

Convierte el parámetro SqlSingle proporcionado 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

Parámetros

x
SqlSingle

Estructura SqlSingle que se va a convertir.

Devoluciones

Una nueva estructura SqlInt64 cuya propiedad Value contiene la parte de entero del parámetro SqlSingle.

Consulte también

Se aplica a

Explicit(SqlMoney to SqlInt64)

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

Convierte el parámetro SqlMoney proporcionado 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

Parámetros

x
SqlMoney

Estructura SqlMoney que se va a convertir.

Devoluciones

Una nueva estructura SqlInt64 cuya propiedad Value es igual a la parte de entero del parámetro SqlMoney.

Consulte también

Se aplica a

Explicit(SqlInt64 to Int64)

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

Convierte el parámetro SqlInt64 en un valor largo.

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

Parámetros

x
SqlInt64

Un estructura SqlInt64.

Devoluciones

Nuevo valor largo equivalente a la propiedad Value de SqlInt64.

Consulte también

Se aplica a

Explicit(SqlDouble to SqlInt64)

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

Convierte la estructura SqlDouble proporcionada 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

Parámetros

x
SqlDouble

Estructura SqlDouble que se va a convertir.

Devoluciones

Una nueva estructura SqlInt64 cuya propiedad Value es igual a la parte de entero del parámetro SqlDouble.

Consulte también

Se aplica a

Explicit(SqlDecimal to SqlInt64)

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

Convierte el parámetro SqlDecimal proporcionado 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

Parámetros

x
SqlDecimal

Estructura SqlDecimal que se va a convertir.

Devoluciones

Una nueva estructura SqlInt64 cuya propiedad Value es igual a la parte de entero del parámetro SqlDecimal.

Consulte también

Se aplica a

Explicit(SqlBoolean to SqlInt64)

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

Convierte el parámetro SqlBoolean proporcionado 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

Parámetros

x
SqlBoolean

Estructura SqlBoolean que se va a convertir.

Devoluciones

Una nueva estructura SqlInt64 cuya propiedad Value es igual a la propiedad ByteValue del parámetro SqlBoolean.

Consulte también

Se aplica a