SqlSingle.Explicit 运算符
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
以 SqlSingle 作为目标或者源进行转换。
重载
Explicit(SqlBoolean to SqlSingle) |
此隐式运算符将提供的 SqlBoolean 转换为 SqlSingle。 |
Explicit(SqlDouble to SqlSingle) | |
Explicit(SqlSingle to Single) |
将指定的 SqlSingle 结构转换为浮点型。 |
Explicit(SqlString to 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
参数
要转换的 SqlBoolean 结构。
返回
一个新的 SqlSingle 结构,它的 Value 等于 ByteValue 参数的 SqlBoolean。
注解
此运算符的等效方法是 SqlBoolean.ToSqlSingle()
另请参阅
适用于
Explicit(SqlDouble to SqlSingle)
- Source:
- SQLSingle.cs
- Source:
- SQLSingle.cs
- Source:
- 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)
- 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
参数
返回
一个 float 类型值,包含 SqlSingle 结构的值。
另请参阅
适用于
Explicit(SqlString to SqlSingle)
- Source:
- SQLSingle.cs
- Source:
- SQLSingle.cs
- Source:
- 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()