如何定义 'value' 属性 setter 参数
How to define 'value' property setter parameter
使用以下 C# 代码:
public interface IFoo
{
int Bar
{
get;
set;
}
}
属性 setter 签名编译为:
.method public hidebysig specialname newslot abstract virtual
instance void set_X (
int32 'value'
) cil managed
{
}
使用 ILSpy 或 ildasm 检查时。
如果我尝试使用 System.Reflection.Emit
API 生成相同的方法签名,生成的输入参数名称为空:
.method public hidebysig specialname newslot abstract virtual
instance void set_X (
int32 ''
) cil managed
{
}
(ilspy
生成的签名)
... 或看似生成的引用名称(在本例中为 A_1
):
.method public hidebysig newslot specialname abstract virtual
instance void set_X(
int32 A_1
) cil managed
{
}
(由ildasm
生成的签名)
如何像 C# 编译示例中那样给输入参数命名 "value"?
这是我用来生成 setter 的代码:
PropertyBuilder property = typeDef.DefineProperty("X", PropertyAttributes.HasDefault, CallingConventions.HasThis, typeof(int), null);
MethodAttributes ma = MethodAttributes.Public
| MethodAttributes.HideBySig
| MethodAttributes.NewSlot
| MethodAttributes.SpecialName
| MethodAttributes.Abstract
| MethodAttributes.Virtual;
MethodBuilder setMethod = typeDef.DefineMethod("set_X", ma, CallingConventions.HasThis, null, new[] { typeof(int) });
property.SetSetMethod(setMethod);
即使我明确尝试定义参数名称,结果仍然相同:
MethodBuilder setMethod = typeDef.DefineMethod("set_X", ma, CallingConventions.HasThis, null, new[] { typeof(int) });
ParameterBuilder pb = setMethod.DefineParameter(0, ParameterAttributes.None, "value");
property.SetSetMethod(setMethod);
我认为您必须使用索引 1
作为第一个参数。来自 MethodBuilder.DefineParameter Method:
的 msdn 条目
Remarks
[...]
Parameter numbering begins with 1, so position is 1 for the first parameter. If position is zero, this method affects the return value.
使用以下 C# 代码:
public interface IFoo
{
int Bar
{
get;
set;
}
}
属性 setter 签名编译为:
.method public hidebysig specialname newslot abstract virtual
instance void set_X (
int32 'value'
) cil managed
{
}
使用 ILSpy 或 ildasm 检查时。
如果我尝试使用 System.Reflection.Emit
API 生成相同的方法签名,生成的输入参数名称为空:
.method public hidebysig specialname newslot abstract virtual
instance void set_X (
int32 ''
) cil managed
{
}
(ilspy
生成的签名)
... 或看似生成的引用名称(在本例中为 A_1
):
.method public hidebysig newslot specialname abstract virtual
instance void set_X(
int32 A_1
) cil managed
{
}
(由ildasm
生成的签名)
如何像 C# 编译示例中那样给输入参数命名 "value"?
这是我用来生成 setter 的代码:
PropertyBuilder property = typeDef.DefineProperty("X", PropertyAttributes.HasDefault, CallingConventions.HasThis, typeof(int), null);
MethodAttributes ma = MethodAttributes.Public
| MethodAttributes.HideBySig
| MethodAttributes.NewSlot
| MethodAttributes.SpecialName
| MethodAttributes.Abstract
| MethodAttributes.Virtual;
MethodBuilder setMethod = typeDef.DefineMethod("set_X", ma, CallingConventions.HasThis, null, new[] { typeof(int) });
property.SetSetMethod(setMethod);
即使我明确尝试定义参数名称,结果仍然相同:
MethodBuilder setMethod = typeDef.DefineMethod("set_X", ma, CallingConventions.HasThis, null, new[] { typeof(int) });
ParameterBuilder pb = setMethod.DefineParameter(0, ParameterAttributes.None, "value");
property.SetSetMethod(setMethod);
我认为您必须使用索引 1
作为第一个参数。来自 MethodBuilder.DefineParameter Method:
Remarks
[...]
Parameter numbering begins with 1, so position is 1 for the first parameter. If position is zero, this method affects the return value.