예제 #1
0
        static void Main(string[] args)
        {
            Student a = new Student("Alibek", "18BD110"); //Student info, entering the class

            a.PrintInfo();                                //Calling function
        }
예제 #2
0
        static void Main(string[] args)
        {
            Student a = new Student("Alibek", "18BD110", 1);

            a.PrintInfo();
        }