variable round double c# code example
Example 1: round double c#
double a = 5.3124;
a = Math.Round(a, 2);
//a is now equal to 5.31
Example 2: round to int 32 c#
Convert.Toint64(number)
double a = 5.3124;
a = Math.Round(a, 2);
//a is now equal to 5.31
Convert.Toint64(number)