1
votes
votes
4 answers
C#: can't get XML first element
[code] HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.mysite.com/XML.php"); HttpWebResponse res = (HttpWebResponse)request.GetResponse(); StreamReader in = new StreamRea ...
