SqlDecimal.Explicit Operador

Definição

Converte a estrutura fornecida em SqlDecimal.

Sobrecargas

Explicit(Double to SqlDecimal)

Converte o parâmetro Double em SqlDecimal.

Explicit(SqlString to SqlDecimal)

Converte o parâmetro SqlString fornecido em SqlDecimal.

Explicit(SqlSingle to SqlDecimal)

Converte a estrutura SqlSingle fornecida em SqlDecimal.

Explicit(SqlDecimal to Decimal)

Converte o parâmetro SqlDecimal em Decimal.

Explicit(SqlBoolean to SqlDecimal)

Converte a estrutura SqlBoolean fornecida em SqlDecimal.

Explicit(SqlDouble to SqlDecimal)

Converte a estrutura SqlDouble fornecida em SqlDecimal.

Explicit(Double to SqlDecimal)

Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs

Converte o parâmetro Double em SqlDecimal.

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

Parâmetros

x
Double

A estrutura Double a ser convertida.

Retornos

Uma nova estrutura SqlDecimal cujo valor é igual ao valor do parâmetro Double.

Comentários

O método equivalente para esse operador é SqlDecimal.Value

Aplica-se a

Explicit(SqlString to SqlDecimal)

Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs

Converte o parâmetro SqlString fornecido em SqlDecimal.

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

Parâmetros

x
SqlString

O objeto SqlString a ser convertido.

Retornos

Uma nova estrutura SqlDecimal cujo Value é igual ao valor representado pelo parâmetro SqlString.

Comentários

O método equivalente para esse operador é SqlString.ToSqlDecimal()

Confira também

Aplica-se a

Explicit(SqlSingle to SqlDecimal)

Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs

Converte a estrutura SqlSingle fornecida em SqlDecimal.

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

Parâmetros

x
SqlSingle

A estrutura SqlSingle a ser convertida.

Retornos

Uma nova estrutura SqlDecimal cuja propriedade Value é igual ao Value do parâmetro SqlSingle.

Comentários

O método equivalente para esse operador é SqlSingle.ToSqlDecimal()

Confira também

Aplica-se a

Explicit(SqlDecimal to Decimal)

Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs

Converte o parâmetro SqlDecimal em Decimal.

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

Parâmetros

x
SqlDecimal

A estrutura SqlDecimal a ser convertida.

Retornos

Uma nova estrutura Decimal cujo valor é igual ao Value do parâmetro SqlDecimal.

Confira também

Aplica-se a

Explicit(SqlBoolean to SqlDecimal)

Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs

Converte a estrutura SqlBoolean fornecida em SqlDecimal.

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

Parâmetros

x
SqlBoolean

A estrutura SqlBoolean a ser convertida.

Retornos

Uma nova estrutura SqlDecimal cujo Value é igual ao ByteValue do parâmetro SqlBoolean.

Comentários

O método equivalente para esse operador é SqlBoolean.ToSqlDecimal()

Confira também

Aplica-se a

Explicit(SqlDouble to SqlDecimal)

Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs
Origem:
SQLDecimal.cs

Converte a estrutura SqlDouble fornecida em SqlDecimal.

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

Parâmetros

x
SqlDouble

A estrutura SqlDouble a ser convertida.

Retornos

Uma nova estrutura SqlDecimal cujo Value é igual ao Value do parâmetro SqlDouble.

Comentários

O método equivalente para esse operador é SqlDouble.ToSqlDecimal()

Confira também

Aplica-se a