I have called to a web service which returns plain text of xml web service. What I want is to get that plain text (string) into data table.how can I do that. this is my code.
WebClient client = new WebClient();
string url = string.Format("https://www.someurl/products.ashx");
string response = client.DownloadString(url);
this code retruns the string(plain text) of web service.