摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace page{ public class PagedList<T> : List<T> { public PagedList(IEnumerable<T> content, int currentPage, int pageSize, int totalCount) : this(totalCount, currentPage, pageSize) { ... 阅读全文
posted @ 2012-05-16 21:26 小川丶 阅读(834) 评论(0) 推荐(0) 编辑