SqlSingle.Explicit 运算符

定义

SqlSingle 作为目标或者源进行转换。

重载

Explicit(SqlBoolean to SqlSingle)

此隐式运算符将提供的 SqlBoolean 转换为 SqlSingle

Explicit(SqlDouble to SqlSingle)

将提供的 SqlDouble 参数转换为 SqlSingle

Explicit(SqlSingle to Single)

将指定的 SqlSingle 结构转换为浮点型。

Explicit(SqlString to SqlSingle)

将提供的 SqlString 参数转换为 SqlSingle

Explicit(SqlBoolean to SqlSingle)

Source:
SQLSingle.cs
Source:
SQLSingle.cs
Source:
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

参数

x
SqlBoolean

要转换的 SqlBoolean 结构。

返回

一个新的 SqlSingle 结构,它的 Value 等于 ByteValue 参数的 SqlBoolean

注解

此运算符的等效方法是 SqlBoolean.ToSqlSingle()

另请参阅

适用于

Explicit(SqlDouble to SqlSingle)

Source:
SQLSingle.cs
Source:
SQLSingle.cs
Source:
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)

Source:
SQLSingle.cs
Source:
SQLSingle.cs
Source:
SQLSingle.cs

将指定的 SqlSingle 结构转换为浮点型。

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

要转换为浮点型的 SqlSingle 值。

返回

一个 float 类型值,包含 SqlSingle 结构的值。

另请参阅

适用于

Explicit(SqlString to SqlSingle)

Source:
SQLSingle.cs
Source:
SQLSingle.cs
Source:
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()

另请参阅

适用于