MemoryStream.Capacity 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定配置給這個資料流的位元組數目。
public:
virtual property int Capacity { int get(); void set(int value); };
public virtual int Capacity { get; set; }
member this.Capacity : int with get, set
Public Overridable Property Capacity As Integer
屬性值
資料流緩衝區可使用部分的長度。
例外狀況
設定的容量為負數或小於資料流目前的長度。
目前的資料流已關閉。
set
在無法修改其容量的資料流上被叫用 (Invoke)。
範例
此程式代碼範例是針對 類別提供的較大範例的 MemoryStream 一部分。
// Write the stream properties to the console.
Console::WriteLine( "Capacity = {0}, Length = {1}, "
"Position = {2}\n", memStream->Capacity.ToString(), memStream->Length.ToString(), memStream->Position.ToString() );
// Write the stream properties to the console.
Console.WriteLine(
"Capacity = {0}, Length = {1}, Position = {2}\n",
memStream.Capacity.ToString(),
memStream.Length.ToString(),
memStream.Position.ToString());
' Write the stream properties to the console.
Console.WriteLine( _
"Capacity = {0}, Length = {1}, Position = {2}", _
memStream.Capacity.ToString(), _
memStream.Length.ToString(), _
memStream.Position.ToString())
備註
Capacity
是系統提供的位元組陣列的緩衝區長度。 Capacity
無法設定為小於數據流目前長度的值。