摘要: 1.使用集合:添加三个类Animal.cs Cow.cs Chiken.csAnimal.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace collection 7 { 8 public abstract class Animal 9 {10 protected string name;11 12 public string Name13 {14 ... 阅读全文
posted @ 2012-06-18 16:43 【唐】三三 阅读(236) 评论(0) 推荐(0)