小编典典

如何找到活动 app.config 文件的路径?

all

我正在尝试完成这个异常处理程序:

if (ConfigurationManager.ConnectionStrings["ConnectionString"]==null)
{
    string pathOfActiveConfigFile = ...?
    throw new ConfigurationErrorsException(
       "You either forgot to set the connection string, or " +
       "you're using a unit test framework that looks for  "+
       "the config file in strange places, update this file : " 
       + pathOfActiveConfigFile);
}

这个问题似乎只发生在我使用 nUnit 时。


阅读 86

收藏
2022-08-03

共1个答案

小编典典

尝试这个

AppDomain.CurrentDomain.SetupInformation.ConfigurationFile
2022-08-03