adamistheman
Something Ain't right... -_-
I was following exactly what he put down, but it didn't make sense when I tried converting it for self interpretation. I didn't know what "student" was, so I was trying to improvise. I do know quite a bit of the basics, but for some reason this didn't catch my eye. Thanks for that.
16 replies
Something Ain't right... -_-
// Instantiate for Student.
List<Student> studentList = new List<Student>();
Student student1 = new Student("Vigil");
studentList.Add(student1);|
Student[] students = {new Student("Mox"), new Student ("Fox") };
Console.WriteLine("Num students in studentList = " + studentList.Count);
16 replies