摘要: using System;using System.Linq;using System.Runtime.InteropServices;namespace ConTest{ class Program { static void Main(string[] args) { Implement im = new Implement(); im.IAnimalEat(); im.IAnimalWalk(); im.IManagerSleep(); im.IPeopleShow(); Console.Read(); } } interface IAnimal { void IAnimal... 阅读全文
posted @ 2013-04-28 18:57 Predator 阅读(139) 评论(0) 推荐(0) 编辑