【文件属性】:
文件名称:模拟停车位
文件大小:1.98MB
文件格式:RAR
更新时间:2015-11-19 08:32:29
停车位
模拟停车位, public SortedList ShowCarByPage(int page, int num)
{
SortedList temp = new SortedList();
for (int i = (page - 1) * num; i < page * num && i < this.Cars.Count; i++)
{
temp.Add(this.Cars.ElementAt(i).Key, this.Cars.ElementAt(i).Value);
}
return temp;
}
//获得分页的页码
public int GetPageNum(int num)
{
int temp = this.Cars.Count % num;
return temp != 0 ? this.Cars.Count / num + 1 : this.Cars.Count / num;
}
}
【文件预览】:
WINFORM阶段项目1
----CarGame()
--------CarGame.sln(911B)
--------CarGame()
--------CarGame.suo(44KB)