C# 读取当前运行程序的配置文件

//Assembly.GetExecutingAssembly()获得当前程序的绝对路径 .获取此程序集的AssemblyName  .获取此程序集的URL位置   
string codeBase = Assembly.GetExecutingAssembly().GetName().CodeBase;
Uri Uri = new System.Uri(Assembly.GetExecutingAssembly().GetName().CodeBase);
string LocalPath = Uri.LocalPath;
//加载配置文件,返回一个配置文件对象
Configuration config = ConfigurationManager.OpenExeConfiguration(LocalPath);

 

你可能感兴趣的:(后端)