Can someone tell me why the following statement gives me the result of 0 :
Math.Ceiling( 1 / 12);
Well actually the above is simplefied from :
private const int LocationsPerPag e = 12;
(int)System.Mat h.Ceiling(dsLoc ations.Tables[0].Rows.Count /
LocationsPerPag e);
Math.Ceiling( 1 / 12);
Well actually the above is simplefied from :
private const int LocationsPerPag e = 12;
(int)System.Mat h.Ceiling(dsLoc ations.Tables[0].Rows.Count /
LocationsPerPag e);
Comment