SqlBytes.Explicit 运算符

定义

转换为 SqlBytes 结构。

重载

Explicit(SqlBytes to SqlBinary)

SqlBytes 结构转换为 SqlBinary 结构。

Explicit(SqlBinary to SqlBytes)

SqlBinary 结构转换为 SqlBytes 结构。

Explicit(SqlBytes to SqlBinary)

Source:
SQLBytes.cs
Source:
SQLBytes.cs
Source:
SQLBytes.cs

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)

Source:
SQLBytes.cs
Source:
SQLBytes.cs
Source:
SQLBytes.cs

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)的等效方法是 。

另请参阅

适用于