Enumeration: get the list of values in C#

enum Season {
    Summer, Fall, Winter, Spring
}

var values = Enum.GetValues(typeof(Season));