Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 593 Bytes

RCS1203.md

File metadata and controls

33 lines (23 loc) · 593 Bytes

RCS1203: Use AttributeUsageAttribute

Property Value
Id RCS1203
Category Design
Severity Warning

Example

Code with Diagnostic

public class FooAttribute : Attribute // RCS1203
{
}

Code with Fix

[AttributeUsageAttribute(AttributeTargets.All, AllowMultiple = false)]
public class FooAttribute : Attribute
{
}

See Also

(Generated with DotMarkdown)