SqlSingle.Implicit Operador

Definición

Convierte en una SqlSingle estructura.

Sobrecargas

Nombre Description
Implicit(Single to SqlSingle)

Convierte el valor de punto flotante especificado en SqlSingle.

Implicit(SqlMoney to SqlSingle)

Convierte la estructura proporcionada SqlMoney en SqlSingle.

Implicit(SqlInt64 to SqlSingle)

Convierte el parámetro proporcionado SqlInt64 en SqlSingle.

Implicit(SqlByte to SqlSingle)

Este operador implícito convierte el SqlByte parámetro en SqlSingle.

Implicit(SqlInt16 to SqlSingle)

Convierte el parámetro proporcionado SqlInt16 en SqlSingle.

Implicit(SqlDecimal to SqlSingle)

Convierte el parámetro proporcionado SqlDecimal en SqlSingle.

Implicit(SqlInt32 to SqlSingle)

Convierte la estructura proporcionada SqlInt32 en SqlSingle.

Implicit(Single to SqlSingle)

Convierte el valor de punto flotante especificado en SqlSingle.

public:
 static operator System::Data::SqlTypes::SqlSingle(float x);
public static implicit operator System.Data.SqlTypes.SqlSingle(float x);
static member op_Implicit : single -> System.Data.SqlTypes.SqlSingle
Public Shared Widening Operator CType (x As Single) As SqlSingle

Parámetros

x
Single

Valor float que se va a convertir en SqlSingle.

Devoluciones

Estructura SqlSingle que contiene el valor del float especificado.

Consulte también

Se aplica a

Implicit(SqlMoney to SqlSingle)

Convierte la estructura proporcionada SqlMoney en SqlSingle.

public:
 static operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlMoney x);
public static implicit operator System.Data.SqlTypes.SqlSingle(System.Data.SqlTypes.SqlMoney x);
static member op_Implicit : System.Data.SqlTypes.SqlMoney -> System.Data.SqlTypes.SqlSingle
Public Shared Widening Operator CType (x As SqlMoney) As SqlSingle

Parámetros

x
SqlMoney

Estructura SqlMoney que se va a convertir.

Devoluciones

Nueva SqlSingle estructura cuyo Value valor es igual al Value del SqlMoney parámetro .

Comentarios

El método equivalente para este operador es SqlMoney.ToSqlSingle()

Consulte también

Se aplica a

Implicit(SqlInt64 to SqlSingle)

Convierte el parámetro proporcionado SqlInt64 en SqlSingle.

public:
 static operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlInt64 x);
public static implicit operator System.Data.SqlTypes.SqlSingle(System.Data.SqlTypes.SqlInt64 x);
static member op_Implicit : System.Data.SqlTypes.SqlInt64 -> System.Data.SqlTypes.SqlSingle
Public Shared Widening Operator CType (x As SqlInt64) As SqlSingle

Parámetros

x
SqlInt64

Estructura SqlInt64 que se va a convertir.

Devoluciones

Nueva SqlSingle estructura cuyo Value valor es igual al Value del SqlInt64 parámetro .

Comentarios

El método equivalente para este operador es SqlInt64.ToSqlSingle()

Consulte también

Se aplica a

Implicit(SqlByte to SqlSingle)

Este operador implícito convierte el SqlByte parámetro en SqlSingle.

public:
 static operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlByte x);
public static implicit operator System.Data.SqlTypes.SqlSingle(System.Data.SqlTypes.SqlByte x);
static member op_Implicit : System.Data.SqlTypes.SqlByte -> System.Data.SqlTypes.SqlSingle
Public Shared Widening Operator CType (x As SqlByte) As SqlSingle

Parámetros

x
SqlByte

que SqlByte se va a convertir.

Devoluciones

Nueva SqlSingle estructura cuya Value propiedad es igual al Value del SqlByte parámetro .

Comentarios

El método equivalente para este operador es SqlByte.ToSqlSingle()

Consulte también

Se aplica a

Implicit(SqlInt16 to SqlSingle)

Convierte el parámetro proporcionado SqlInt16 en SqlSingle.

public:
 static operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlInt16 x);
public static implicit operator System.Data.SqlTypes.SqlSingle(System.Data.SqlTypes.SqlInt16 x);
static member op_Implicit : System.Data.SqlTypes.SqlInt16 -> System.Data.SqlTypes.SqlSingle
Public Shared Widening Operator CType (x As SqlInt16) As SqlSingle

Parámetros

x
SqlInt16

Estructura SqlInt16 que se va a convertir.

Devoluciones

Nueva SqlSingle estructura cuyo Value valor es igual al Value del SqlInt16 parámetro .

Comentarios

El método equivalente para este operador es SqlInt16.ToSqlSingle()

Consulte también

Se aplica a

Implicit(SqlDecimal to SqlSingle)

Convierte el parámetro proporcionado SqlDecimal en SqlSingle.

public:
 static operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlDecimal x);
public static implicit operator System.Data.SqlTypes.SqlSingle(System.Data.SqlTypes.SqlDecimal x);
static member op_Implicit : System.Data.SqlTypes.SqlDecimal -> System.Data.SqlTypes.SqlSingle
Public Shared Widening Operator CType (x As SqlDecimal) As SqlSingle

Parámetros

x
SqlDecimal

Estructura SqlDecimal que se va a convertir.

Devoluciones

Nueva SqlSingle estructura cuyo Value valor es igual al Value del SqlDecimal parámetro .

Comentarios

El método equivalente para este operador es SqlDecimal.ToSqlSingle()

Consulte también

Se aplica a

Implicit(SqlInt32 to SqlSingle)

Convierte la estructura proporcionada SqlInt32 en SqlSingle.

public:
 static operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlInt32 x);
public static implicit operator System.Data.SqlTypes.SqlSingle(System.Data.SqlTypes.SqlInt32 x);
static member op_Implicit : System.Data.SqlTypes.SqlInt32 -> System.Data.SqlTypes.SqlSingle
Public Shared Widening Operator CType (x As SqlInt32) As SqlSingle

Parámetros

x
SqlInt32

Estructura SqlInt32 que se va a convertir.

Devoluciones

Nueva SqlSingle estructura cuyo Value valor es igual al Value del SqlInt32 parámetro .

Comentarios

El método equivalente para este operador es SqlInt32.ToSqlSingle()

Consulte también

Se aplica a