111,092
社区成员




struct 大学
{
public enum 北京
{
数学, 语文, 英语
}
}
class student
{
public 大学.北京 学系;
}
student stu = new student();
stu.学系 = 大学.北京.数学;