MemoryStream: ToArray |
Writes the stream contents to a byte array, regardless of the Position property.
Public Function ToArray ( ) As Byte ( )
This method omits unused bytes in MemoryStream from the array.
This method returns a copy of the contents of the MemoryStream as a byte array. If the current instance was constructed on a provided byte array, a copy of the section of the array to which this instance has access is returned. See the MemoryStream constructor NewMemoryStream for details.
Note |
---|
The method works when the MemoryStream is closed. |