Question:Define Enums?
Answer An enum (also named an enumeration) is a special value type that lets you specify a group of named numeric constants. Example:public enum BorderSide { Left, Right, Top, Bottom }
public enum BorderSide { Left, Right, Top, Bottom }
+ Report
Define Enums?