SqlBytes.Explicit 操作员

定义

转换为 SqlBytes 结构。

重载

名称 说明
Explicit(SqlBytes to SqlBinary)

SqlBytes 结构转换为 SqlBinary 结构。

Explicit(SqlBinary to SqlBytes)

SqlBinary 结构转换为 SqlBytes 结构。

Explicit(SqlBytes to SqlBinary)

SqlBytes 结构转换为 SqlBinary 结构。

public:
 static explicit operator System::Data::SqlTypes::SqlBinary(System::Data::SqlTypes::SqlBytes ^ value);
public static explicit operator System.Data.SqlTypes.SqlBinary(System.Data.SqlTypes.SqlBytes value);
static member op_Explicit : System.Data.SqlTypes.SqlBytes -> System.Data.SqlTypes.SqlBinary
Public Shared Narrowing Operator CType (value As SqlBytes) As SqlBinary

参数

value
SqlBytes

SqlBytes要转换的结构。

返回

SqlBinary 结构。

注解

此运算符 SqlBytes.ToSqlBinary()的等效方法是 。

另请参阅

适用于

Explicit(SqlBinary to SqlBytes)

SqlBinary 结构转换为 SqlBytes 结构。

public:
 static explicit operator System::Data::SqlTypes::SqlBytes ^(System::Data::SqlTypes::SqlBinary value);
public static explicit operator System.Data.SqlTypes.SqlBytes(System.Data.SqlTypes.SqlBinary value);
static member op_Explicit : System.Data.SqlTypes.SqlBinary -> System.Data.SqlTypes.SqlBytes
Public Shared Narrowing Operator CType (value As SqlBinary) As SqlBytes

参数

value
SqlBinary

SqlBinary要转换的结构。

返回

SqlBytes 结构。

注解

此运算符 SqlBytes.SqlBytes(SqlBinary)的等效方法是 。

另请参阅

适用于