对于Windows程序 和Web 应用程序来说,他们运行的路径是不一样的,所以关键是判断当前运行的程序是哪种程序.于是我们可以使用如下的代码
string
path
=
""
;
if (System.Environment.CurrentDirectory == AppDomain.CurrentDomain.BaseDirectory) // Windows应用程序则相等
{
path = AppDomain.CurrentDomain.BaseDirectory;
}
else
{
path = AppDomain.CurrentDomain.BaseDirectory + "Bin\";
}
if (System.Environment.CurrentDirectory == AppDomain.CurrentDomain.BaseDirectory) // Windows应用程序则相等
{
path = AppDomain.CurrentDomain.BaseDirectory;
}
else
{
path = AppDomain.CurrentDomain.BaseDirectory + "Bin\";
}
这样如果我们写了一个类库,类库中用到了Assembly.LoadFrom,由于是通用类库,所以可能用到Windows程序中也可能用到Web中,那么用上面的代码就很方便了.
本文转自深蓝居博客园博客,原文链接:http://www.cnblogs.com/studyzy/archive/2007/03/08/690302.html,如需转载请自行联系原作者