Example #1
0
        static void Main(string[] args)
        {
            studentStudent myStudentStudent = new studentStudent("Tom", "Thumb");

            myStudentStudent.MiddleInitial = 'R';
            myStudentStudent.Age           = 15;
            myStudentStudent.GPA           = 3.5;
            myStudentStudent.displayDetails();
        }
 static void Main(string[] args)
 {
     studentStudent myStudentStudent = new studentStudent("Tom", "Thumb");
         myStudentStudent.MiddleInitial = 'R';
         myStudentStudent.Age = 15;
         myStudentStudent.GPA = 3.5;
         myStudentStudent.displayDetails();
 }