If I am given a MemoryStream that I know has been populated with a String, how do I get a String back out?
|
|
|
|
|
|
|
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. |
||
|
|
|
|
This sample shows how to read and write a string to a MemoryStream.
|
|||
|
|
|
|
While the first comment's code nearly gets it right, it still not quite there. The return statement will prevent the reader's dispose method from being called. So the proper method of doing this is: Public Function GetString(ByVal memStream As MemoryStream) As String Dim tReturn as String = String.Empty ' Important to reset the stream otherwise you will just get an empty string. memStream.Position = 0 Using reader As New StreamReader(memStream) tReturn = reader.ReadToEnd() End Using Return tReturn End Function |
||
|
|
|
I would just argue your setting Position to 0 because it unnecessarily limits the function use. It states that you always want to read the string from the beginning of the stream. EDIT: answering Alex Lyman I believe my reputation doesn't allow me to comment on answers (either that or I'm blind). |
|||
|
|
|
Never quite sure if reader.close is always required. I have had issues in the past so as a rule I always do just to be on the safe side. |
||
|
|
|
Using a StreamReader to convert the MemoryStream to a String.
|
||||||
|
|
|
use a StreamReader, then you can use the ReadToEnd method that returns a string. |
||
|
|
