Enum FlagsOrEnum
Represents the classification of an object as either a standard enumeration, a flags enumeration, or neither.
public enum FlagsOrEnum
Fields
Enum = 1The object is a standard enum.
Flags = 2The object is an enum marked with [Flags] attribute.
None = 0The object is not an enum or flags.
Remarks
This enumeration is used to distinguish between objects that are standard enums, enums marked with the FlagsAttribute, or objects that are not enums at all.