我有一个 ASP.NET 项目:MyWeb,
它引用了另一个程序集:MyDll,
在MyDll中,我怎样使用 MyDll 项目自己的配置文件?// In myDll...
exePath = System.IO.Path.Combine( AppDomain.CurrentDomain.BaseDirectory, "Bin\\ApplicationServer.dll" );
config = ConfigurationManager.OpenExeConfiguration( exePath );MyDll 被拷贝到了 MyWeb/Bin 下面,OpenExeConfiguration() 成功了,但打开的并不是 MyDll 的配置文件,该如何解决这个问题呢?