BlobBuilder.ToImmutableArray 方法

定義

多載

ToImmutableArray()
ToImmutableArray(Int32, Int32)

ToImmutableArray()

來源:
BlobBuilder.cs
來源:
BlobBuilder.cs
來源:
BlobBuilder.cs
public:
 System::Collections::Immutable::ImmutableArray<System::Byte> ToImmutableArray();
public System.Collections.Immutable.ImmutableArray<byte> ToImmutableArray ();
member this.ToImmutableArray : unit -> System.Collections.Immutable.ImmutableArray<byte>
Public Function ToImmutableArray () As ImmutableArray(Of Byte)

傳回

例外狀況

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

適用於

ToImmutableArray(Int32, Int32)

來源:
BlobBuilder.cs
來源:
BlobBuilder.cs
來源:
BlobBuilder.cs
public:
 System::Collections::Immutable::ImmutableArray<System::Byte> ToImmutableArray(int start, int byteCount);
public System.Collections.Immutable.ImmutableArray<byte> ToImmutableArray (int start, int byteCount);
member this.ToImmutableArray : int * int -> System.Collections.Immutable.ImmutableArray<byte>
Public Function ToImmutableArray (start As Integer, byteCount As Integer) As ImmutableArray(Of Byte)

參數

start
Int32
byteCount
Int32

傳回

例外狀況

startbyteCount 指定的範圍超出緩衝區內容的界限。

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

適用於