配列を初期化する
private int[] iArray = new int[]{0, 1, 2, 3};
列挙型を定義する
public enum ColorEnum
{
Blue,
Yellow,
Red
}