自定义属性约束

Custom attribute constraints

如何制作只能与特定关键字一起使用的自定义属性?例如属性只能放在字段上方或只能放在 public 布尔字段上方?

重点是做一些类似于Java @Target 注释的东西。

How make custom attribute which can be used only with specific keyword?

这在 Delphi 中是不可能的。