C#反射中使用到Emit时,发现AppDomain.CurrentDomain.DefineDynamicAssembly()方法并不存在

C#反射中使用到Emit时,发现AppDomain.CurrentDomain.DefineDynamicAssembly()方法并不存在,但是官网.Net 5给出得例子中仍然使用了此方法https://docs.microsoft.com/zh-cn/dotnet/api/system.reflection.emit.assemblybuilder?view=net-5.0

C#反射中使用到Emit时,发现AppDomain.CurrentDomain.DefineDynamicAssembly()方法并不存在

此问题解决方案是将AppDomain.CurrentDomain替换成AssemblyBuilder.

 

C#反射中使用到Emit时,发现AppDomain.CurrentDomain.DefineDynamicAssembly()方法并不存在

 

上一篇:c#-在另一个AppDomain中创建类型的实例


下一篇:首页> C#>有没有免费的库来实现类似于MSMQ(微软消息队列)的消息队列?