有两个这样的属性:
[AttributeUsage(AttributeTargets.Parameter, Inherited = false, AllowMultiple = true)]
sealed class Test1Attribute : Attribute
{ }
[AttributeUsage(AttributeTargets.Parameter, Inherited = false, AllowMultiple = true)]
sealed class Test2Attribute : Attribute
{ }
它们很简单,什么都不做。
还有一个用这两个属性装饰的方法:
public void Hello([Test1]string arg, [Test2] string arg2) { }
现在如果我编译代码并用 IL Dasm 反编译它,我会看到方法“Hello”的 IL 代码是这样的:
.method public hidebysig instance void Hello(int32 arg, int32 arg2) cil managed
{
.param [1]
.custom instance void ConsoleApplication1.Test1Attribute::.ctor()
.param [2]
.custom instance void ConsoleApplication1.Test2Attribute::.ctor()
.maxstack 8
L_0000: nop
L_0001: ret
}
我们可以看到 Test1Attribute 和 Test2Attribute 都在 IL 代码中。它的元数据是这样的:
MethodName: Hello (06000005)
Flags : [Public] [HideBySig] [ReuseSlot] (00000086)
RVA : 0x0000206b
ImplFlags : [IL] [Managed] (00000000)
CallCnvntn: [DEFAULT]
hasThis
ReturnType: Void
2 Arguments
Argument #1: String
Argument #2: String
2 Parameters
(1) ParamToken : (08000002) Name : arg flags: [none] (00000000)
CustomAttribute #1 (0c000010)
-------------------------------------------------------
CustomAttribute Type: 06000001
CustomAttributeName: ConsoleApplication1.Test1Attribute :: instance void .ctor()
Length: 4
Value : 01 00 00 00 > <
ctor args: ()
(2) ParamToken : (08000003) Name : arg2 flags: [none] (00000000)
CustomAttribute #1 (0c000012)
-------------------------------------------------------
CustomAttribute Type: 06000002
CustomAttributeName: ConsoleApplication1.Test2Attribute :: instance void .ctor()
Length: 4
Value : 01 00 00 00 > <
ctor args: ()
同样,这两个属性也都存在于元数据中。
所以我很好奇:
- 为什么它们同时出现在 IL 和 Metadata 中?
做什么
.param [1] .custom 实例 void ConsoleApplication1.Test1Attribute::.ctor() .param [2] .custom 实例 void ConsoleApplication1.Test2Attribute::.ctor()
意思是?它看起来不像指令。那么它们是什么?他们在做什么?
谢谢