SqlDouble.Implicit Operator

Definition

Converts to a SqlDouble structure.

Overloads

Implicit(Double to SqlDouble)

Converts the supplied double value to a SqlDouble.

Implicit(SqlSingle to SqlDouble)

Converts the supplied SqlSingle parameter to SqlDouble.

Implicit(SqlMoney to SqlDouble)

Converts the supplied SqlMoney parameter to SqlDouble.

Implicit(SqlInt64 to SqlDouble)

Converts the supplied SqlInt64 parameter to SqlDouble.

Implicit(SqlDecimal to SqlDouble)

Converts the supplied SqlDecimal parameter to SqlDouble.

Implicit(SqlInt16 to SqlDouble)

Converts the supplied SqlInt16 parameter to SqlDouble.

Implicit(SqlInt32 to SqlDouble)

Converts the supplied SqlInt32 parameter to SqlDouble.

Implicit(SqlByte to SqlDouble)

Converts the supplied SqlByte parameter to SqlDouble.

Implicit(Double to SqlDouble)

Source:
SQLDouble.cs
Source:
SQLDouble.cs
Source:
SQLDouble.cs

Converts the supplied double value to a SqlDouble.

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

Parameters

x
Double

The double value to convert.

Returns

A SqlDouble with the same value as the specified double parameter.

See also

Applies to

Implicit(SqlSingle to SqlDouble)

Source:
SQLDouble.cs
Source:
SQLDouble.cs
Source:
SQLDouble.cs

Converts the supplied SqlSingle parameter to SqlDouble.

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

Parameters

x
SqlSingle

A SqlSingle structure.

Returns

A new SqlDouble structure whose Value is equal to the Value of the SqlSingle parameter. If the SqlSingle is Null, the SqlDouble structure will be Null.

Remarks

The equivalent method for this operator is SqlSingle.ToSqlDouble()

See also

Applies to

Implicit(SqlMoney to SqlDouble)

Source:
SQLDouble.cs
Source:
SQLDouble.cs
Source:
SQLDouble.cs

Converts the supplied SqlMoney parameter to SqlDouble.

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

Parameters

x
SqlMoney

A SqlMoney structure.

Returns

A new SqlDouble whose Value is equal to the Value of the SqlMoney parameter. If the SqlMoney is Null, the SqlDouble structure will be Null.

Remarks

The equivalent method for this operator is SqlMoney.ToSqlDouble()

See also

Applies to

Implicit(SqlInt64 to SqlDouble)

Source:
SQLDouble.cs
Source:
SQLDouble.cs
Source:
SQLDouble.cs

Converts the supplied SqlInt64 parameter to SqlDouble.

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

Parameters

x
SqlInt64

A SqlInt64 structure.

Returns

A new SqlDouble whose Value is equal to the Value of the SqlInt64 parameter. If the SqlInt64 is Null, the SqlDouble structure will be Null.

Remarks

The equivalent method for this operator is SqlInt64.ToSqlDouble()

See also

Applies to

Implicit(SqlDecimal to SqlDouble)

Source:
SQLDouble.cs
Source:
SQLDouble.cs
Source:
SQLDouble.cs

Converts the supplied SqlDecimal parameter to SqlDouble.

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

Parameters

x
SqlDecimal

A SqlDecimal structure.

Returns

A new SqlDouble structure whose Value is equal to the Value of the SqlDecimal parameter. If the SqlDecimal is Null, the SqlDouble structure will be Null.

Remarks

The equivalent method for this operator is SqlDecimal.ToSqlDouble()

See also

Applies to

Implicit(SqlInt16 to SqlDouble)

Source:
SQLDouble.cs
Source:
SQLDouble.cs
Source:
SQLDouble.cs

Converts the supplied SqlInt16 parameter to SqlDouble.

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

Parameters

x
SqlInt16

A SqlInt16 structure.

Returns

A new SqlDouble structure whose Value is equal to the Value of the SqlInt16 parameter. If the SqlInt16 is Null, the SqlDouble structure will be Null.

Remarks

The equivalent method for this operator is SqlInt16.ToSqlDouble()

See also

Applies to

Implicit(SqlInt32 to SqlDouble)

Source:
SQLDouble.cs
Source:
SQLDouble.cs
Source:
SQLDouble.cs

Converts the supplied SqlInt32 parameter to SqlDouble.

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

Parameters

x
SqlInt32

A SqlInt32 structure.

Returns

A new SqlDouble whose Value is equal to the Value of the SqlInt32 parameter. If the SqlInt32 is Null, the SqlDouble structure will be Null.

Remarks

The equivalent method for this operator is SqlInt32.ToSqlDouble()

See also

Applies to

Implicit(SqlByte to SqlDouble)

Source:
SQLDouble.cs
Source:
SQLDouble.cs
Source:
SQLDouble.cs

Converts the supplied SqlByte parameter to SqlDouble.

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

Parameters

x
SqlByte

A SqlDouble structure.

Returns

A SqlDouble structure whose Value is equal to the Value of the SqlByte parameter. If the SqlByte is Null, the SqlDouble structure will be Null.

Remarks

The equivalent method for this operator is SqlByte.ToSqlDouble()

See also

Applies to