MemoryStream Constructor (array<Byte>)
Initializes a new non-resizable instance of the MemoryStream class based on the specified byte array.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- buffer
- Type: array<System::Byte>
The array of unsigned bytes from which to create the current stream.
| Exception | Condition |
|---|---|
| ArgumentNullException | buffer is nullptr. |
The CanRead, CanSeek, and CanWrite properties are all set to true. Capacity is set to the length of the specified byte array. The new stream can be written to, but is not resizable.
The length of the stream cannot be set to a value greater than the initial length of the specified byte array; however, the stream can be truncated (see SetLength).
This constructor does not expose the underlying stream. GetBuffer throws UnauthorizedAccessException.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.