public int findStudent(Student p) { Student s = (Student)students[p.getStudentId()]; if (s == null) return 0; return 1; }
public void AddStudent(Student student) { students.Add(students.Keys, student); }