OptimizedMemoryStream.OptimizedMemoryStream

OptimizedMemoryStream()

Initializes a new instance of the OptimizedMemoryStream class.

public OptimizedMemoryStream()

See Also


OptimizedMemoryStream(int, byte[])

Initializes a new instance of the OptimizedMemoryStream class based on the specified byte array.

public OptimizedMemoryStream(int bufferSize, byte[] buffer)
ParameterTypeDescription
bufferSizeInt32Size of the underlying buffers.
bufferByte[]The array of unsigned bytes from which to create the current stream.

See Also


OptimizedMemoryStream(int)

Initializes a new instance of the OptimizedMemoryStream class.

public OptimizedMemoryStream(int bufferSize)
ParameterTypeDescription
bufferSizeInt32Size of the underlying buffers.

See Also


OptimizedMemoryStream(byte[])

Initializes a new instance of the OptimizedMemoryStream class based on the specified byte array.

public OptimizedMemoryStream(byte[] buffer)
ParameterTypeDescription
bufferByte[]The array of unsigned bytes from which to create the current stream.

See Also