Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 508 Bytes

File metadata and controls

26 lines (20 loc) · 508 Bytes

GA0051

Title

Ineffective type group filter

Category

Brevity

Severity

Warning

Details

The given filter type will not affect the filtered types, since it's not recognized by the filter system. This includes FilterType.None.

See how the type group filtering system works at the docs.

Example

class GenericType
<
    // GA0051 will appear here
    [FilterGenericTypes(FilterType.None)]
    [FilterArrayTypes(FilterType.Exclusive)]
    T
>;