How can i truncate the leading digit of double value in C#,I have tried Math.Round(doublevalue,2) but not giving the require result. and i didn\'t find any other method in M
How about:
double num = 12.12890; double truncatedNum = ((int)(num * 100))/100.00;