I\'m using a custom attribute inherited from an attribute class. I\'m using it like this:
[MyCustomAttribute(\"CONTROL\")] [MyCustomAttribute(\"ALT\")] [MyCustom
After you add the AttributeUsage, make sure you add this property to your Attribute class
public override object TypeId { get { return this; } }