I have a C# Application working with HttpListener. I use get method to store datas and in get method, when i try to store it , utf-8 characterset problem is destroys data.
My code:
var context = listener.EndGetContext(result);
string message = context.Request.QueryString["msg"];
How can i make it UTF-8 Supported?