本文整理汇总了C#中Course.addStudent方法的典型用法代码示例。如果您正苦于以下问题:C# Course.addStudent方法的具体用法?C# Course.addStudent怎么用?C# Course.addStudent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Course
的用法示例。
在下文中一共展示了Course.addStudent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
static void Main(string[] args)
{
// Creating three student objects, since it's at least three.
Student stud1 = new Student("Surya", "Raman", "[email protected]");
Student stud2 = new Student("Narendra", "Mdoi","[email protected]");
Student stud3 = new Student("Barack", "Obama", "[email protected]");
//Now creating the course object with dev204X
Course course = new Course("DEV204X", 5);
//Using the method at the end of this code to add students to course
course.addStudent(stud1);
course.addStudent(stud2);
course.addStudent(stud3);
// Creating one teacher object since that's the minimum number
Teacher teacher = new Teacher("Bruce", "Wayne", "[email protected]");
// Using the method at the end of this code to add teacher to course
course.addTeacher(teacher);
// Creating Degree object, assuming Computer Science and Engineering degree
Degree degree = new Degree("Computer Science and Engineering", 250, null);
// Adding Course object to the Degree object
degree.Course = course;
//Creating UProgram object with Bachelor of Engineering
UProgram uProgram = new UProgram("Bachelor of Engineering", "Lex Luthor", null);
// Adding the Degree object to the UProgram object
uProgram.Degree = degree;
// Printing everything as per the Assignment instructions
Console.WriteLine("The {0} program contains the {1} degree\n", uProgram.ProgramName, degree.DegreeName);
Console.WriteLine("The {0} degree contains the course {1}\n", degree.DegreeName, course.CourseName);
Console.WriteLine("The {0} course contains {1} student(s)\n", course.CourseName, course.studentNumber);
Console.ReadKey();
}