Right now I\'m using XmlTextWriter to convert a MemoryStream object into string. But I wan\'t to know whether there is a faster method to serialize a memorystream to string.
In VB.net i used this
Dim TempText = System.Text.Encoding.UTF8.GetString(TempMemoryStream.ToArray())
in C# may apply