4
Answers

pending \0 in string?

Ask a question
George George

George George

16y
1.9k
1

Hello everyone,


I am using the following code to read a string. The content of message is ends with a lot of \0 characters. Why and how to remove them?

(context is an instance of HttpListenerContext, and my code is read Http request from begin to end)

[Code]
                using (StreamReader requestStream = new StreamReader(context.Request.InputStream))
                {
                    message = requestStream.ReadToEnd();
                }
[/Code]


thanks in advance,
George


Answers (4)
Next Recommended Forum