Loading

摘要: 在winform中使用程序动态读取和修改App.config里面的appSettings当中的Value值,解决winform中没有的修改和修改后不能及时取得其值的问题: //写操作 public static void SetValue(string AppKey, string AppValue) { XmlDocument xDoc = new XmlDocument(); //获取可执行文件的路径和名称 xDoc.Load(System.Windows.Forms.Application.ExecutablePath + ".config"); XmlNode xN 阅读全文
posted @ 2013-01-11 23:56 jesn 阅读(419) 评论(0) 推荐(0) 编辑