instanceof@tg says to YSITD/// <summary> /// Saves only the specified page of <see cref="Src"/>. /// </summary> /// <param name="page">The page to show.</param> /// <param name="pageSize">How many entries to show in a page.</param> /// <returns>this <see cref="SortPageUtils{T}"/></returns> public SortPageUtils<T> Page( int page, int pageSize ) { if (page != 0 && pageSize != 0) { Src = Src.Skip((page - 1) * pageSize).Take(page * pageSize); } return this; } 怎麼確定自己寫的分頁演算法沒有任何錯誤阿 qwqat Sun, Jul 26, 2020 8:47 PM