You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NFine.Code.Extend
|
|
{
|
|
public static class ExtList
|
|
{
|
|
/// <summary>
|
|
/// 获取表里某页的数据
|
|
/// </summary>
|
|
/// <param name="data">表数据</param>
|
|
/// <param name="pageIndex">当前页</param>
|
|
/// <param name="pageSize">分页大小</param>
|
|
/// <param name="allPage">返回总页数</param>
|
|
/// <returns>返回当页表数据</returns>
|
|
public static List<T> GetPage<T>(this List<T> data, int pageIndex, int pageSize, out int allPage)
|
|
{
|
|
allPage = 1;
|
|
return null;
|
|
}
|
|
/// <summary>
|
|
/// IList转成List<T>
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <param name="list"></param>
|
|
/// <returns></returns>
|
|
public static List<T> IListToList<T>(IList list)
|
|
{
|
|
T[] array = new T[list.Count];
|
|
list.CopyTo(array, 0);
|
|
return new List<T>(array);
|
|
}
|
|
}
|
|
}
|