C# 读取指定路径配置文件的方法
程序员文章站
2023-12-01 13:32:34
复制代码 代码如下:execonfigurationfilemap map = new execonfigurationfilemap(); &nbs...
复制代码 代码如下:
execonfigurationfilemap map = new execonfigurationfilemap();
map.execonfigfilename = @"f:\app1.config"; ;
configuration config = configurationmanager.openmappedexeconfiguration(map, configurationuserlevel.none);
string connstr = config.connectionstrings.connectionstrings["connstr"].connectionstring;
messagebox.show(connstr);
string key = config.appsettings.settings["key"].value;
messagebox.show(key);
上一篇: vue.js多页面开发环境搭建过程
下一篇: VUE 实现复制内容到剪贴板的两种方法