Type.GetType(string)应该知道动态生成的类型

本文关键字:动态 类型 GetType string Type | 更新日期: 2023-09-27 18:36:23

我有一个应用程序,它使用 CodeDom 编译器创建一些代码。我可以看到生成的程序集在内存中。但是当我调用Type.GetType(typeName)时,它返回null。我觉得这有点令人困惑。

我做错了什么?

static void Main(string[] args)
{
    // FYI: Code is some dummy class with only 1 instance method.
    string code = System.IO.File.ReadAllText("CodeToCompile.cs.txt");
    string errors = null;
    Assembly asm = DynamicCompiler.Compile(code, generateInMemory: true, generateDebugInfo: false, message: ref errors);
    // Get type from the generated assembly. We know there is only one.
    Type oneAndOnlyTypeInAssembly = asm.GetTypes().First();
    string typeName = oneAndOnlyTypeInAssembly.AssemblyQualifiedName;
    // Tell the type system to return instance of type based on fully qualified name.
    // I'd expect this to work, since the assembly is already loaded to memory.
    Type sameType = Type.GetType(typeName);
    if (sameType != null)
    {
        Console.WriteLine("Type found and equal={0}", oneAndOnlyTypeInAssembly.Equals(sameType));
    }
    else
    {
        Console.WriteLine("Type NOT FOUND");
    }
}

Type.GetType(string)应该知道动态生成的类型

请参阅 MSDN 中的备注部分。不支持您要执行的操作:

GetType 仅适用于从磁盘加载的程序集。如果调用 GetType 来查找在使用 System.Reflection.Emit 服务定义的动态程序集中定义的类型,则可能会得到不一致的行为。该行为取决于动态程序集是否持久,即使用 System.Reflection.Emit.AssemblyBuilderAccess 枚举的 RunAndSave 或 Save 访问模式创建的。如果动态程序集是永久性的,并且在调用 GetType 之前已写入磁盘,则加载程序将在磁盘上查找保存的程序集,加载该程序集,然后从该程序集检索类型。如果在调用 GetType 时程序集尚未保存到磁盘,则该方法返回 null。GetType 不理解瞬态动态程序集;因此,调用 GetType 以检索瞬态动态程序集中的类型将返回 null