What is the best way to copy the contents of one stream to another? Is there a standard utility method for this?
For .NET 3.5 and before try :
MemoryStream1.WriteTo(MemoryStream2);