Force it to round up:
totalPage = (imagesFound.Length + PageSize - 1) / PageSize;
Or use floating point math:
totalPage = (int) Math.Ceiling((double) imagesFound.Length / PageSize);
Force it to round up:
totalPage = (imagesFound.Length + PageSize - 1) / PageSize;
Or use floating point math:
totalPage = (int) Math.Ceiling((double) imagesFound.Length / PageSize);