摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace MyArrayList_hjf{ class MyArrayList : IEnumerable { object[] objarr = new object[0]; int count; public MyArrayList() { } public MyArrayList(int capacity) { this.Capacity = capacity; } 阅读全文
posted @ 2011-07-20 19:37 贺俊峰 阅读(838) 评论(0) 推荐(0) 编辑