BlobBuilder.ToArray 方法

定義

多載

ToArray()
ToArray(Int32, Int32)

ToArray()

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

傳回

Byte[]

例外狀況

內容是不可寫入的;建立器已與另一個連結。

適用於

ToArray(Int32, Int32)

來源:
BlobBuilder.cs
來源:
BlobBuilder.cs
來源:
BlobBuilder.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 指定的範圍超出緩衝區內容的界限。

內容是不可寫入的;建立器已與另一個連結。

適用於