SqlSingle.Explicit Operator
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 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)
この暗黙的な演算子は、指定された 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 構造体。
返品
Valueが SqlBoolean パラメーターのByteValueと等しい新しいSqlSingle構造体。
注釈
この演算子の同等のメソッドは次のようになります。 SqlBoolean.ToSqlSingle()
こちらもご覧ください
適用対象
Explicit(SqlDouble to SqlSingle)
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
パラメーター
返品
Valueが SqlDouble パラメーターのValueと等しい新しいSqlSingle構造体。
注釈
この演算子の同等のメソッドは次のようになります。 SqlDouble.ToSqlSingle()
こちらもご覧ください
適用対象
Explicit(SqlSingle to Single)
指定した 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構造体の値を格納する float。
こちらもご覧ください
適用対象
Explicit(SqlString to SqlSingle)
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
パラメーター
返品
Valueが SqlString パラメーターで表される値と等しい新しいSqlSingle構造体。
注釈
この演算子の同等のメソッドは次のようになります。 SqlString.ToSqlSingle()