MemoryStream Constructor
Initializes a new instance of the MemoryStream class.
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() | MemoryStream() | Initializes a new instance of the MemoryStream class with an expandable capacity initialized to zero. |
![]() | MemoryStream(array<Byte>^) | Initializes a new non-resizable instance of the MemoryStream class based on the specified byte array. |
![]() | MemoryStream(array<Byte>^, Boolean) | Initializes a new non-resizable instance of the MemoryStream class based on the specified byte array with the CanWrite property set as specified. |
![]() | MemoryStream(array<Byte>^, Int32, Int32) | Initializes a new non-resizable instance of the MemoryStream class based on the specified region (index) of a byte array. |
![]() | MemoryStream(array<Byte>^, Int32, Int32, Boolean) | Initializes a new non-resizable instance of the MemoryStream class based on the specified region of a byte array, with the CanWrite property set as specified. |
![]() | MemoryStream(array<Byte>^, Int32, Int32, Boolean, Boolean) | Initializes a new instance of the MemoryStream class based on the specified region of a byte array, with the CanWrite property set as specified, and the ability to call GetBuffer set as specified. |
![]() | MemoryStream(Int32) | Initializes a new instance of the MemoryStream class with an expandable capacity initialized as specified. |
