See Also: AvoidUnsealedConcreteAttributesRule Members
Example
[AttributeUsage (AttributeTargets.All)]
public class BadAttribute : Attribute {
}
Example
[AttributeUsage (AttributeTargets.All)]
public sealed class SealedAttribute : Attribute {
}
Example
[AttributeUsage (AttributeTargets.All)]
public abstract class AbstractAttribute : Attribute {
}
[AttributeUsage (AttributeTargets.All)]
public sealed class ConcreteAttribute : AbstractAttribute {
}