예제 #1
0
 static void Main(string[] args)
 {
     //Super super = new Super();
     Sub sub = new Sub();
 }
예제 #2
0
        static void Main(string[] args)
        {
            Super super = new Super();

            Sub sub = new Sub();    // 자식 클래스가 객체를 만들면 부모의 변수나 메소드를 사용해야 하므로 부모가 먼저 만들어짐
        }
예제 #3
0
파일: Program.cs 프로젝트: roylimtan/TIL
 static void Main(string[] args)
 {
     Sub sub = new Sub();
 }