示例#1
0
文件: Program.cs 项目: 3141592/vs
 static void Main(string[] args)
 {
     InterfaceImplmenter ii = new InterfaceImplmenter();
     ii.MethodToImplement();
     ii.ParentInterfaceMethod();
     Console.ReadKey();
 }
示例#2
0
文件: Program.cs 项目: 3141592/vs
        static void Main(string[] args)
        {
            InterfaceImplmenter ii = new InterfaceImplmenter();

            ii.MethodToImplement();
            ii.ParentInterfaceMethod();
            Console.ReadKey();
        }