Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- how to pull xml data from radio station API using C#
- XDocument doc=XDocument.Load(string uri);
- XDocument doc = XDocument.Load("http://api.sr.se/api/rightnowinfo/Rightnowinfo.aspx?unit=164");
- foreach (var t in doc.Root.Descendants())
- {
- Console.WriteLine(t);
- }
Advertisement
Add Comment
Please, Sign In to add comment