gpt4 book ai didi

c# - Reflection.Emit 和通用类型

转载 作者:太空狗 更新时间:2023-10-30 01:06:22 24 4
gpt4 key购买 nike

我正在使用 Reflection.Emit,我想创建一个与 C# 中定义的以下类型等效的类型:

class A
{
public Tuple<A, int> GetValue(int x)
{
return new Tuple<A, int>(this, x);
}
}

诀窍是我需要使用 BCL 中的泛型类型,它使用我的自定义类型作为泛型参数。

我弄乱了以下片段:

var asmName = new AssemblyName("Test");
var access = AssemblyBuilderAccess.Run;
var asm = AppDomain.CurrentDomain.DefineDynamicAssembly(asmName, access);
var module = asm.DefineDynamicModule("Test");

var aType = module.DefineType("A");
var tupleType = typeof(Tuple<,>).MakeGenericType(aType, typeof(int));

var attrs = MethodAttributes.Public;
var method = aType.DefineMethod("GetValue", attrs, tupleType, new [] { typeof(int) });
var gen = method.GetILGenerator();

gen.Emit(OpCodes.Ldarg_0);
gen.Emit(OpCodes.Ldarg_1);

// here is the fail:
var ctor = tupleType.GetConstructor(new [] { typeof(int), aType } );
gen.Emit(OpCodes.Newobj, ctor);

调用 GetConstructor 失败,出现以下异常:

NotSupportedException: Specified method is not supported.

因此,基本上,它不会让我获得仅引用我的自定义类型的类型的构造函数,而且我也无法在发出其方法主体之前完成该类型。

真的无法摆脱这个恶性循环吗?

最佳答案

出于某种原因,您需要使用 the static overload of GetConstructor()去做这个。在您的情况下,代码可能如下所示:

var ctor = TypeBuilder.GetConstructor(
tupleType, typeof(Tuple<,>).GetConstructors().Single());

关于c# - Reflection.Emit 和通用类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15669387/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com