摘要: System.Collections 命名空间包含接口和类,这些接口和类定义各种对象(如列表、队列、位数组、哈希表和字典)的集合。System.Collections.Generic 命名空间包含定义泛型集合的接口和类,泛型集合允许用户创建强类型集合,它能提供比非泛型强类型集合更好的类型安全性和性能。System.Collections.Specialized 命名空间包含专用的和强类型的集合,例如,链接的列表词典、位向量以及只包含字符串的集合。 ArrayList 类:使用大小可按需动态增加的数组。using System;using System.Collections.Generic;u 阅读全文
posted @ 2011-04-11 16:37 杀 手 阅读(20051) 评论(0) 推荐(2) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace DVL.Model{ public class TestModeol { #region 每页记录数 private int pageCount = 5; public int PageCount { get { return pageCount; } set { pageCount = value; } } #endregion #region 总记录数 private int total; public in 阅读全文
posted @ 2011-04-11 09:01 杀 手 阅读(289) 评论(3) 推荐(0) 编辑