예제 #1
0
파일: Studenti.cs 프로젝트: pepiczech/INPTP
        public void Nacti()
        {
            int pocet = Cteni.NactiInt("Zadejte počet studentů");
            pole = new Student[pocet];
            for (int i = 0; i < pocet; i++)
            {
                pole[i] = new Student();
                pole[i].Nacti();

            }
        }
예제 #2
0
파일: Student.cs 프로젝트: pepiczech/INPTP
 public static bool MensiJmeno(Student a, Student b)
 {
     return string.Compare(a.jmeno, b.jmeno)< 0;
 }
예제 #3
0
파일: Student.cs 프로젝트: pepiczech/INPTP
 public static bool MensiFakulta(Student a, Student b)
 {
     return a.fakulta.ToString().CompareTo(b.fakulta.ToString()) < 0;
 }