How do I convert the following examples numbers (decimal, double or float) to 2 decimal places truncating (rounding down) the digits to the right:
77.1455
52.00
714.1554
5552.0001
Should become like these
"77.14"
"52"
"714.15"
"5552"
Some suggested
String.Format("G29");
String.Format("0.00");
But they don't work as expected.