獲取交互次數(分頁)

public static int GetInterpurchaseTimes<T>(IEnumerable<T> list, int range = 100)
        {
            if (list != null && list.Count() > 0)
            {
                return (int)Math.Ceiling(list.Count() / (double)range);
            }
            return 0;
        }
相關文章
相關標籤/搜索