Hi I think I am pretty close, but basically I have a streamReader that reads the xml file
and what i need to do is to save this entire stream as a xml file in my directory.
any help is much appriciated
Thanks.
Code:
StreamReader xmlStream = getXMLFromServer(url);
while (xmlStream.Peek() != -1) {
Console.WriteLine(reader.ReadLine());
}
any help is much appriciated
Thanks.