Answer the question
In order to leave comments, you need to log in
Encoding in C# when working with JSON?
Hello! There is this piece of code:
public string Req(string m, string s, string t)
{
string method = m;
string settings = s;
string token = t;
var url = "https://api.vk.com/method/"+ method+"?"+settings+ "&access_token="+token+"&v=5.63";
WebClient client = new WebClient();
var json = client.DownloadString(url);
return json;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question