Exemplo n.º 1
0
 public Course()
 {
     Counter++;
     this.Name  = "";
     this.Time  = enumTime.春季学期;
     this.Count = 0;
 }
Exemplo n.º 2
0
 public Course(string newName, enumTime newTime, int newConut)
 {
     Counter++;
     this.Name  = newName;
     this.Time  = newTime;
     this.Count = newConut;
     if (this.Count > 100 || this.Count < 0)
     {
         Console.WriteLine("选课人数范围0~100,请重新定义");
     }
 }