我有以下项目结构:
Web API
A
B
C
这些是项目之间的参考
Web API
直接引用A
和B
B
直接引用C
C
有一个方法需要确保加载A
以通过反射使用其中定义的类型。
我的代码实际上就像以下
public class C {
public void MethodCallingBType( string fullClassName ) {
//e.g. "MyNamespace.MyType, MyNamespace"
string[] parts = fullClassName.Split( ',' );
var className = parts[0].Trim();
var assemblyName = parts[1].Trim();
if ( !string.IsNullOrEmpty( assemblyName ) && !string.IsNullOrEmpty( className ) ) {
string assemblyFolder = Path.GetDirectoryName( Assembly.GetExecutingAssembly().Location );
string assemblyPath = Path.Combine( assemblyFolder, assemblyName + ".dll" );
if ( File.Exists( assemblyPath ) ) {
Assembly assembly = Assembly.LoadFrom( assemblyPath );
Type type = assembly.GetType( className );
result = Activator.CreateInstance( type ) as IInterfaceRunner;
}
}
}
}
此代码实际上不起作用,因为Path.GetDirectoryName
函数未返回有效路径。除此之外,我想创建一种更好的方法来确保B
模块在查找其类型之前加载到内存中。
有什么建议吗?
答案 0 :(得分:2)
简单的Assembly.Load
不起作用?您不必知道位置,只知道名称。
我在同样的情况下使用Assembly.CodeBase
并且工作正常:
string codebase = System.Reflection.Assembly.GetExecutingAssembly().CodeBase;
Uri p = new Uri(codebase);
string localPath = p.LocalPath;
var myassembly = System.Reflection.Assembly.LoadFrom(System.IO.Path.Combine(localPath, "MyAssebmly.dll"));
祝你好运, 彼得
答案 1 :(得分:1)
修改了Peter的答案,但逻辑更加正确,因为他的合并失败,并且没有理由创建URL来获取本地文件路径。
using System.Reflection;
using System.IO;
var appDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
var myAssembly = Assembly.LoadFrom(Path.Combine(appDir, "MyAssebmly.dll"));