If I am given a MemoryStream that I know has been populated with a String, how do I get a String back out?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
This sample shows how to read and write a string to a MemoryStream.
|
|||||||||||||||||||
|
|
Using a StreamReader to convert the MemoryStream to a String.
|
|||||||||||
|
|
You can also use
I don't think this is less efficient, but I couldn't swear to it. It also lets you choose a different encoding, whereas using a StreamReader you'd have to specify that as a parameter. |
|||||
|
|
use a StreamReader, then you can use the ReadToEnd method that returns a string. |
|||||
|
|
A slightly modified version of Brian's answer allows optional management of read start, This seems to be the easiest method. probably not the most efficient, but easy to understand and use.
|
||||
|
|
|
Previous solutions wouldn't work in cases where encoding is involved. Here is an example how to do this properly...
|
||||
|
|