SqlBinary.WrapBytes(Byte[]) 方法

定义

将字节数组转换为 SqlBinary 结构。

public:
 static System::Data::SqlTypes::SqlBinary WrapBytes(cli::array <System::Byte> ^ bytes);
public static System.Data.SqlTypes.SqlBinary WrapBytes (byte[] bytes);
static member WrapBytes : byte[] -> System.Data.SqlTypes.SqlBinary
Public Shared Function WrapBytes (bytes As Byte()) As SqlBinary

参数

bytes
Byte[]

用于创建 SqlBinary 结构的字节数组。

返回

SqlBinary 字节数组创建的 结构。

注解

此方法直接从传递的字节数组创建 SqlBinary 结构,而无需复制它们。

适用于