need to round the amount in asp.net
10000/31 =322.58
if we make roundoff means we get 323 but i need as 322
Use Math.Floor()
double value = 322.58; double floor = Math.Floor(value);
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.