示例#1
0
文件: Server.cs 项目: garygsw/Camphor
        public void DeleteStudent(string matric)
        {
            // FUNCTION: delete for the Student to be returned
            // PRE-CONDITIONS: matric must be valid
            // POST-CONDITIONS:
            Student student = studentList[matric];

            student.DeleteEvents(this);
            studentList.Remove(matric);
        }