AssemblyTool/RecodeItLib/Enums/ENoMatchReason.cs
2024-06-28 18:38:03 -04:00

26 lines
496 B
C#

namespace ReCodeIt.Enums;
public enum ENoMatchReason
{
AmbiguousWithPreviousMatch,
AmbiguousNewTypeNames,
IsEnum,
IsNested,
IsSealed,
IsDerived,
HasGenericParameters,
HasAttribute,
ConstructorParameterCount,
MethodsInclude,
MethodsExclude,
MethodsCount,
FieldsInclude,
FieldsExclude,
FieldsCount,
PropertiesInclude,
PropertiesExclude,
PropertiesCount,
NestedTypeInclude,
NestedTypeExclude,
NestedTypeCount,
}