Specify required base class for .NET attribute targets

后端 未结 3 437
孤独总比滥情好
孤独总比滥情好 2020-12-10 04:54

I tried to create a custom .NET attribute with the code below but accidentally left off the subclass. This generated an easily-fixed compiler error shown in the comment.

3条回答
  •  渐次进展
    2020-12-10 05:47

    AttributeUsageAttribute is just a magic class (like Attribute itself is). This is a built-in compiler rule, and you cannot do something like that for your own attributes.

提交回复
热议问题