File.Copy(this. file_name,this. save_name,true) ;
XmlDocument new_doc=new XmlDocument();
new_doc.Load(th is.save_name);
foreach(XmlNode node in new_doc)
{
if(node.LocalNa me=="Result")
System.Console. WriteLine("Resu lt");
}
I get an error ,while it's running-why?
Thank you very much!
*** Sent via Developersdex http://www.developersdex.com ***
XmlDocument new_doc=new XmlDocument();
new_doc.Load(th is.save_name);
foreach(XmlNode node in new_doc)
{
if(node.LocalNa me=="Result")
System.Console. WriteLine("Resu lt");
}
I get an error ,while it's running-why?
Thank you very much!
*** Sent via Developersdex http://www.developersdex.com ***
Comment