SqlSingle.Explicit 演算子

定義

SqlSingle との間で変換を実行します。

オーバーロード

Explicit(SqlBoolean to SqlSingle)

この暗黙の演算子は、指定した SqlBooleanSqlSingle に変換します。

Explicit(SqlDouble to SqlSingle)

指定した SqlDouble パラメーターを SqlSingle に変換します。

Explicit(SqlSingle to Single)

指定した SqlSingle 構造体を float 型に変換します。

Explicit(SqlString to SqlSingle)

指定した SqlString パラメーターを SqlSingle に変換します。

Explicit(SqlBoolean to SqlSingle)

ソース:
SQLSingle.cs
ソース:
SQLSingle.cs
ソース:
SQLSingle.cs

この暗黙の演算子は、指定した SqlBooleanSqlSingle に変換します。

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

パラメーター

x
SqlBoolean

変換対象の SqlBoolean 構造体。

戻り値

SqlSingle パラメーターの Value と等しい ByteValue を持つ新しい SqlBoolean 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlBoolean.ToSqlSingle()

こちらもご覧ください

適用対象

Explicit(SqlDouble to SqlSingle)

ソース:
SQLSingle.cs
ソース:
SQLSingle.cs
ソース:
SQLSingle.cs

指定した SqlDouble パラメーターを 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

パラメーター

x
SqlDouble

変換される SqlDouble パラメーター。

戻り値

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

パラメーター

x
SqlSingle

float 型に変換される SqlSingle 値。

戻り値

SqlSingle 構造体の値を格納している float 型。

こちらもご覧ください

適用対象

Explicit(SqlString to SqlSingle)

ソース:
SQLSingle.cs
ソース:
SQLSingle.cs
ソース:
SQLSingle.cs

指定した SqlString パラメーターを 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

パラメーター

x
SqlString

変換される SqlString オブジェクトです。

戻り値

SqlSingle パラメーターで表される値と等しい Value を持つ新しい SqlString 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlString.ToSqlSingle()

こちらもご覧ください

適用対象