예제 #1
0
        public int findStudent(Student p)
        {
            Student s = (Student)students[p.getStudentId()];
            if (s == null)
                return 0;

            return 1;
        }
예제 #2
0
 public void AddStudent(Student student)
 {
     students.Add(students.Keys, student);
 }