public static int getCourses(Person P)
 {
     return 12 * P.yearsLeft;
 }
        static void Main(string[] args)
        {
            Person person = new Person();

            person.DisplayName("James", "Morrison");
        }
 static void Main(string[] args)
 {
     Person freshman = new Person("John", "Science");
     freshman.printPerson();
 }