using System;
namespace Common
{
public enum Gender
{
Male,
Female,
Neutral
}
}
The values in the enumeration run from 0 (Male) to 2 (Neutral).