I have a memorystream in a silverlight app. I have to copy this memorystream to a filestream object. If I call:
memoryStream.Position = 0;
memoryStream.Seek(0,SeekOrigin.Begin);
It does not work, I debug the application, check the properties of the memorystream, and the position still points to the end of the file. Any clues?