SqlDouble.Explicit 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 and from a SqlDouble.
Overloads
Explicit(SqlBoolean to SqlDouble) |
Converts the supplied SqlBoolean parameter to SqlDouble. |
Explicit(SqlDouble to Double) |
Converts the supplied SqlDouble structure to double. |
Explicit(SqlString to SqlDouble) |
Explicit(SqlBoolean to SqlDouble)
- Source:
- SQLDouble.cs
- Source:
- SQLDouble.cs
- Source:
- SQLDouble.cs
Converts the supplied SqlBoolean parameter to SqlDouble.
public:
static explicit operator System::Data::SqlTypes::SqlDouble(System::Data::SqlTypes::SqlBoolean x);
public static explicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlBoolean x);
static member op_Explicit : System.Data.SqlTypes.SqlBoolean -> System.Data.SqlTypes.SqlDouble
Public Shared Narrowing Operator CType (x As SqlBoolean) As SqlDouble
Parameters
The SqlBoolean to be converted.
Returns
A new SqlDouble structure whose Value is either 0 or 1, depending on the ByteValue property of the SqlBoolean parameter. If the SqlBoolean is Null, the SqlDouble structure will be Null.
Remarks
The equivalent method for this operator is SqlBoolean.ToSqlDouble()
See also
Applies to
Explicit(SqlDouble to Double)
- Source:
- SQLDouble.cs
- Source:
- SQLDouble.cs
- Source:
- SQLDouble.cs
Converts the supplied SqlDouble structure to double.
public:
static explicit operator double(System::Data::SqlTypes::SqlDouble x);
public static explicit operator double (System.Data.SqlTypes.SqlDouble x);
static member op_Explicit : System.Data.SqlTypes.SqlDouble -> double
Public Shared Narrowing Operator CType (x As SqlDouble) As Double
Parameters
Returns
A double equivalent to the specified SqlDouble structure's value.
See also
Applies to
Explicit(SqlString to SqlDouble)
- Source:
- SQLDouble.cs
- Source:
- SQLDouble.cs
- Source:
- SQLDouble.cs
public:
static explicit operator System::Data::SqlTypes::SqlDouble(System::Data::SqlTypes::SqlString x);
public static explicit operator System.Data.SqlTypes.SqlDouble (System.Data.SqlTypes.SqlString x);
static member op_Explicit : System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlDouble
Public Shared Narrowing Operator CType (x As SqlString) As SqlDouble
Parameters
Returns
A new SqlDouble whose Value is equal to the value of the number represented by the SqlString. If the SqlString is Null, the SqlDouble structure will be Null.
Remarks
The equivalent method for this operator is SqlString.ToSqlDouble()