예제 #1
0
        static void Main(string[] args)
        {
            Student s1 = new Student();

            s1.GetData();
            s1.DisplayData();
        }
예제 #2
0
 static void Main(string[] args)
 {
     Student s1 = new Student();
     s1.GetData();
     s1.DisplayData();
     Console.ReadKey();
 }
예제 #3
0
파일: Program.cs 프로젝트: YiHan0525/Antra
        static void Main(string[] args)
        {
            Student s1 = new Student();

            s1.GetData();
            s1.DisplayData();
            Console.ReadKey();
        }
예제 #4
0
        static void Main(string[] args)
        {
            //Console.WriteLine("Hello World!");
            Student s1 = new Student();

            s1.GetData();
            s1.DisplayData();
            Console.ReadKey();
        }