CLR via C# - Chapter 15 Enumerated Types and Bit Flags
# Chapter 15 Enumerated Types and Bit Flags # Enumerated Types An enumerated type is a type that defines a set of symbolic name and value pairs. For example, the Color type shown here defines a set of symbols, with each symbol identifying a single color. internal enum Color { White, //...
more...