Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Initializes a new non-resizable instance of the MemoryStream class based on the specified byte array.
Namespace: System.IO
Assembly: System.IO (in System.IO.dll)
Syntax
'Declaration
Public Sub New ( _
buffer As Byte() _
)
public MemoryStream(
byte[] buffer
)
public:
MemoryStream(
array<unsigned char>^ buffer
)
new :
buffer:byte[] -> MemoryStream
public function MemoryStream(
buffer : byte[]
)
Parameters
- buffer
Type: array<System. . :: . .Byte> [] () [] []
The array of unsigned bytes from which to create the current stream.
Remarks
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).
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.