SqlDouble.Implicit Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts to a SqlDouble structure.
Overloads
Implicit(Double to SqlDouble) |
Converts the supplied double value to a SqlDouble. |
Implicit(SqlSingle to SqlDouble) | |
Implicit(SqlMoney to SqlDouble) | |
Implicit(SqlInt64 to SqlDouble) | |
Implicit(SqlDecimal to SqlDouble) |
Converts the supplied SqlDecimal parameter to SqlDouble. |
Implicit(SqlInt16 to SqlDouble) | |
Implicit(SqlInt32 to SqlDouble) | |
Implicit(SqlByte 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
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
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
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
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
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
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
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
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
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
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
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
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
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()