/******************************************************************************* * Copyright © 2016 NFine.Framework 版权所有 * Author: NFine * Description: NFine快速开发平台 * Website:http://www.nfine.cn *********************************************************************************/ using System.Collections; using System.Collections.Generic; namespace Common { public static class ExtList { /// /// 获取表里某页的数据 /// /// 表数据 /// 当前页 /// 分页大小 /// 返回总页数 /// 返回当页表数据 public static List GetPage(this List data, int pageIndex, int pageSize, out int allPage) { allPage = 1; return null; } /// /// IList转成List /// /// /// /// public static List IListToList(IList list) { T[] array = new T[list.Count]; list.CopyTo(array, 0); return new List(array); } } }