我的网络应用程序位于“D:\WebApp 文件夹”中,并且“D:\Bin”文件夹中有一个 dll,我想使用相对路径而不是直接使用绝对路径“D:\Bin”来使用 ninject bindthe dll ,因为绝对路径可能在某个地方发生了变化。
代码如下:
string path="how to get the path";
kernel.Bind(x => x.FromAssembliesInPath("path")
.SelectAllClasses()
.BindDefaultInterface());
我怎样才能得到代码中的路径?