首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Windows Mobile >

:C#读取xml文件,出现未处理 System.IO.IOException xml

2012-02-13 
求助:C#读取xml文件,出现未处理 System.IO.IOException xml菜鸟求助,分不多,见谅如下代码,一直提示出现Sys

求助:C#读取xml文件,出现未处理 System.IO.IOException xml
菜鸟求助,分不多,见谅
如下代码,一直提示出现System.IO.IOException,请问该如何处理,抓狂中,拜托诸位
XmlDocument   xmlDoc   =   new   XmlDocument();
StreamReader   xmlFile   =   new   StreamReader(@ "D:\\ElePatrol\\PatrolType.xml ");
xmlDoc.Load(xmlFile);
xmlFile.Close();


[解决办法]
StreamReader xmlFile = new StreamReader(@ "D:\\ElePatrol\\PatrolType.xml ");

你那个@ 是什么意思啊?????

@ 后面怎么还那么写啊!!
StreamReader xmlFile = new StreamReader(@ "D:\ElePatrol\PatrolType.xml ");

热点排行