BlobWriter.ToArray 方法

定义

重载

ToArray()
ToArray(Int32, Int32)

ToArray()

Source:
BlobWriter.cs
Source:
BlobWriter.cs
Source:
BlobWriter.cs
public:
 cli::array <System::Byte> ^ ToArray();
public byte[] ToArray ();
member this.ToArray : unit -> byte[]
Public Function ToArray () As Byte()

返回

Byte[]

适用于

ToArray(Int32, Int32)

Source:
BlobWriter.cs
Source:
BlobWriter.cs
Source:
BlobWriter.cs
public:
 cli::array <System::Byte> ^ ToArray(int start, int byteCount);
public byte[] ToArray (int start, int byteCount);
member this.ToArray : int * int -> byte[]
Public Function ToArray (start As Integer, byteCount As Integer) As Byte()

参数

start
Int32
byteCount
Int32

返回

Byte[]

例外

startbyteCount 指定的范围超出了缓冲区内容的范围。

适用于