我有一个MethodInfo
来自类库的方法。assembly
是否可以仅使用该信息确定其所在的路径?
void foo(MethodInfo methodInfo)
{
// Get the path of the DLL here
...
我有一个MethodInfo
来自类库的方法。assembly
是否可以仅使用该信息确定其所在的路径?
void foo(MethodInfo methodInfo)
{
// Get the path of the DLL here
...
怎么样
methodInfo.DeclaringType.Assembly.Location
?
要获取找到程序集的位置,请使用CodeBase
而不是Location
ie
methodInfo.DeclaringType.Assembly.Codebase
有关差异的描述,请参见此处。如果您的程序集被影子复制,您可能会发现CodeBase
更有用。
你能用methodInfo.DeclaringType.Assembly.Location
吗?