BF2Statistics.Web.Bf2Stats.PlayerController.GetPage C# (CSharp) Method

GetPage() public method

Returns the page number that the players stat would appear
public GetPage ( int index ) : int
index int The player position
return int
        public int GetPage(int index)
        {
            return 1 + (index / RankingsController.PlayersPerPage);
        }