SqlSingle.Explicit 運算子
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
來回轉換 SqlSingle。
多載
Explicit(SqlBoolean to SqlSingle) |
這個隱含運算子會將提供的 SqlBoolean 轉換成 SqlSingle。 |
Explicit(SqlDouble to SqlSingle) | |
Explicit(SqlSingle to Single) |
將指定的 SqlSingle 結構轉換成浮點數 (Float)。 |
Explicit(SqlString to SqlSingle) |
Explicit(SqlBoolean to SqlSingle)
- 來源:
- SQLSingle.cs
- 來源:
- SQLSingle.cs
- 來源:
- SQLSingle.cs
這個隱含運算子會將提供的 SqlBoolean 轉換成 SqlSingle。
public:
static explicit operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlBoolean x);
public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlBoolean x);
static member op_Explicit : System.Data.SqlTypes.SqlBoolean -> System.Data.SqlTypes.SqlSingle
Public Shared Narrowing Operator CType (x As SqlBoolean) As SqlSingle
參數
要轉換的 SqlBoolean 結構。
傳回
新 SqlSingle 結構,其 Value 等於 ByteValue 參數的 SqlBoolean。
備註
這個運算子的對等方法為 SqlBoolean.ToSqlSingle()
另請參閱
適用於
Explicit(SqlDouble to SqlSingle)
- 來源:
- SQLSingle.cs
- 來源:
- SQLSingle.cs
- 來源:
- SQLSingle.cs
public:
static explicit operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlDouble x);
public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlDouble x);
static member op_Explicit : System.Data.SqlTypes.SqlDouble -> System.Data.SqlTypes.SqlSingle
Public Shared Narrowing Operator CType (x As SqlDouble) As SqlSingle
參數
傳回
新 SqlSingle 結構,其 Value 等於 Value 參數的 SqlDouble。
備註
這個運算子的對等方法為 SqlDouble.ToSqlSingle()
另請參閱
適用於
Explicit(SqlSingle to Single)
- 來源:
- SQLSingle.cs
- 來源:
- SQLSingle.cs
- 來源:
- SQLSingle.cs
將指定的 SqlSingle 結構轉換成浮點數 (Float)。
public:
static explicit operator float(System::Data::SqlTypes::SqlSingle x);
public static explicit operator float (System.Data.SqlTypes.SqlSingle x);
static member op_Explicit : System.Data.SqlTypes.SqlSingle -> single
Public Shared Narrowing Operator CType (x As SqlSingle) As Single
參數
傳回
浮點數,包含 SqlSingle 結構的值。
另請參閱
適用於
Explicit(SqlString to SqlSingle)
- 來源:
- SQLSingle.cs
- 來源:
- SQLSingle.cs
- 來源:
- SQLSingle.cs
public:
static explicit operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlString x);
public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlString x);
static member op_Explicit : System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlSingle
Public Shared Narrowing Operator CType (x As SqlString) As SqlSingle
參數
傳回
新的 SqlSingle 結構,其 Value 等於 SqlString 參數表示的值。
備註
這個運算子的對等方法為 SqlString.ToSqlSingle()