MemoryStream Constructor (Int32)
Initializes a new instance of the MemoryStream class with an expandable capacity initialized as specified.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- capacity
- Type: System.Int32
The initial size of the internal array in bytes.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | capacity is negative. |
The CanRead, CanSeek, and CanWrite properties are all set to true.
The capacity automatically increases when you use the SetLength method to set the length to a value larger than the capacity of the current stream. Except for a MemoryStream constructed with a byte[] parameter, write operations at the end of a MemoryStream expand the MemoryStream.
This constructor exposes the underlying stream that GetBuffer returns.
This code example is part of a larger example provided for the MemoryStream class.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.