I am trying to read from web service (ODATA) an XML and save the data at DataSet. The problem is that there are Unicode characters I can not read.
My code looks like that:
String URLString = "SomeUrl";
DataSet ds = new DataSet();
ds.ReadXml(URLString);
What is the simplest way to get the data with the Unicode characters and save it in DataSet?
Thank you!