SqlSingle.Explicit Operador
Definición
Sobrecargas
Explicit(SqlBoolean to SqlSingle) |
Este operador implícito convierte el SqlBoolean especificado en SqlSingle.This implicit operator converts the supplied SqlBoolean to SqlSingle. |
Explicit(SqlDouble to SqlSingle) |
Convierte el parámetro SqlDouble proporcionado en SqlSingle.Converts the supplied SqlDouble parameter to SqlSingle. |
Explicit(SqlSingle to Single) |
Convierte la estructura SqlSingle especificada en un valor flotante.Converts the specified SqlSingle structure to float. |
Explicit(SqlString to SqlSingle) |
Convierte el parámetro SqlString proporcionado en SqlSingle.Converts the supplied SqlString parameter to SqlSingle. |
Explicit(SqlBoolean to SqlSingle)
Este operador implícito convierte el SqlBoolean especificado en SqlSingle.This implicit operator converts the supplied SqlBoolean to SqlSingle.
public:
static explicit operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlBoolean x);
public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlBoolean x);
static member op_Explicit : System.Data.SqlTypes.SqlBoolean -> System.Data.SqlTypes.SqlSingle
Public Shared Narrowing Operator CType (x As SqlBoolean) As SqlSingle
Parámetros
Estructura SqlBoolean que se va a convertir.The SqlBoolean structure to be converted.
Devoluciones
Una nueva estructura SqlSingle cuya propiedad Value es igual a la propiedad ByteValue del parámetro SqlBoolean.A new SqlSingle structure whose Value is equal to the ByteValue of the SqlBoolean parameter.
Comentarios
El método equivalente para este operador es SqlBoolean.ToSqlSingle()The equivalent method for this operator is SqlBoolean.ToSqlSingle()
Consulte también
Se aplica a
Explicit(SqlDouble to SqlSingle)
public:
static explicit operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlDouble x);
public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlDouble x);
static member op_Explicit : System.Data.SqlTypes.SqlDouble -> System.Data.SqlTypes.SqlSingle
Public Shared Narrowing Operator CType (x As SqlDouble) As SqlSingle
Parámetros
Devoluciones
Una nueva estructura SqlSingle cuya propiedad Value es igual a la propiedad Value del parámetro SqlDouble.A new SqlSingle structure whose Value is equal to the Value of the SqlDouble parameter.
Comentarios
El método equivalente para este operador es SqlDouble.ToSqlSingle()The equivalent method for this operator is SqlDouble.ToSqlSingle()
Consulte también
Se aplica a
Explicit(SqlSingle to Single)
public:
static explicit operator float(System::Data::SqlTypes::SqlSingle x);
public static explicit operator float (System.Data.SqlTypes.SqlSingle x);
static member op_Explicit : System.Data.SqlTypes.SqlSingle -> single
Public Shared Narrowing Operator CType (x As SqlSingle) As Single
Parámetros
Devoluciones
Un valor de punto flotante que contiene el valor de la estructura SqlSingle.A float that contains the value of the SqlSingle structure.
Consulte también
Se aplica a
Explicit(SqlString to SqlSingle)
public:
static explicit operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlString x);
public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlString x);
static member op_Explicit : System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlSingle
Public Shared Narrowing Operator CType (x As SqlString) As SqlSingle
Parámetros
Devoluciones
Nueva estructura SqlSingle cuya propiedad Value es igual al valor representado por el parámetro SqlString.A new SqlSingle structure whose Value is equal to the value represented by the SqlString parameter.
Comentarios
El método equivalente para este operador es SqlString.ToSqlSingle()The equivalent method for this operator is SqlString.ToSqlSingle()