コード例 #1
0
ファイル: sections.cs プロジェクト: uelfar/Classification
 public section(int ID, string Name, int SectionSize)
 {
     id          = ID;
     name        = Name;
     sectionSize = SectionSize;
     stdlist     = new studentsList();
 }
コード例 #2
0
ファイル: sections.cs プロジェクト: uelfar/Classification
 public section()
 {
     id          = -1;
     name        = "";
     sectionSize = -1;
     stdlist     = new studentsList();
 }