Attribute Naming Guidelines
You should always add the suffix Attribute
to custom attribute classes. The following is an example of a correctly named attribute class.
Public Class ObsoleteAttribute
[C#]
public class ObsoleteAttribute{}
Dieser Browser wird nicht mehr unterstützt.
Führen Sie ein Upgrade auf Microsoft Edge durch, um die neuesten Features, Sicherheitsupdates und den technischen Support zu nutzen.
You should always add the suffix Attribute
to custom attribute classes. The following is an example of a correctly named attribute class.
Public Class ObsoleteAttribute
[C#]
public class ObsoleteAttribute{}