摘要: 主要有几种:1 System.Array类(一个简单的数组)2 System.Collections.ArrayList类 先看段代码:View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Collections; 6 namespace 使用集合 7 { 8 public abstract class Animal 9 {10 protected string name;11 public Animal(str 阅读全文
posted @ 2011-03-19 11:07 师士 阅读(386) 评论(0) 推荐(0) 编辑