有没有办法检查项目中引用的某些库(假设 dll)。
例子
public void SomeFunction()
if(libraryReferenced){
//
}
}
而在外部项目中 //Library not Referenced
MyDll.SomeFunction();
在我的 dll 函数中 // libraryReferenced = false
反之亦然
谢谢。
有没有办法检查项目中引用的某些库(假设 dll)。
例子
public void SomeFunction()
if(libraryReferenced){
//
}
}
而在外部项目中 //Library not Referenced
MyDll.SomeFunction();
在我的 dll 函数中 // libraryReferenced = false
反之亦然
谢谢。