I currently have a memorystream with length of about 30000 (Named memStream here) I wished to read this memorystream in chunks using t
30000
Named memStream here
chunks
After creating and filling the MemoryStream, you need to set the read position to the begining like so:
memStream.Seek(0, SeekOrigin.Begin);