예제 #1
0
파일: Program.cs 프로젝트: Vlanta/CspBase
        static void Main(string[] args)
        {
            Base b = new Son();

            b.CallIT();
            Console.WriteLine(((Son)b).i);
        }
예제 #2
0
파일: Program.cs 프로젝트: Vlanta/CspBase
 static void Main(string[] args)
 {
     Base b = new Son();
     b.CallIT();
     Console.WriteLine(((Son)b).i);
 }