void Add(string strFirstName, string strLastName, string strAddress, double dblGrade) { clsStudent objStudent = new clsStudent(); objStudent.FirstName = strFirstName; objStudent.LastName = strLastName; objStudent.Address = strAddress; objStudent.Grade = dblGrade; List.Add(objStudent); }
public void EvaluateStudentsByGPA(double minGPA, double maxGPA) { clsStudent student = null; for (int i = List.Count - 1; i >= 0; --i) { student = (clsStudent)List[i]; if (student.Grade < minGPA) { List.Remove(student); continue; } if (student.Grade > maxGPA) { List.Remove(student); continue; } } }
public void Add(clsStudent s) { List.Add(s); }