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