public CStudent(string main, string[] st) { fIO = new CFIO(); Exams = new CExams(); IsActive = true; getFromstr(main, st); }
public CStudent() { FIO = new CFIO(); Group = StringEquivalents.DefaultGroupes[sp]; c = 1; IsActive = true; exams = new CExams(); }
public CExams Clone() { CExams res = new CExams(); for (int i = 0; i < res.cexams.Length; i++) { res.cexams[i] = this.cexams[i].Clone(); } return(res); }