枚举 : enum Day {
Mon, Tur,Wen,Sur,Fri,Sat,Sun
}
Day d1 = Day.Mon;
结构体 : struct Pe{
public int ID;
public bool sex;
public string name;
Pe p = new Pe();
p.ID = 1234567890;