Пример #1
0
        static void Main()
        {
            Student student = new Student();

            student.GetDept();
            student.DisplayStuInfo();
            Console.Read();
        }
Пример #2
0
        static void Main()
        {
            Student student = new Student("MIT", "Mech", "Jamuna");

            student.GetDept();
            student.DisplayStuInfo();
            GC.Collect();
            Console.Read();
        }
Пример #3
0
        static void Main()
        {
            Student student = new Student("UPES", "Upstream", "Arul");

            student.Getdept();
            student.DisplayStuInfo();
            GC.Collect();
            Console.Read();
        }