分页起始位置的懒汉判断方法:

 

Start = new int[] { (pageIndex - 1) * 12, 0 }.Max()

还有个懒汉办法: Start=Math.Max((pageIndex-1)*12,0);