Possible Duplicate:
C# Double - ToString() formatting with two decimal places but no rounding
I'm using float numbers and I want to get the number of decimal points without any rounding-off being performed.
For Eg. float x = 12.6789 If I want upto 2 decimal points, then I should get (x = 12.67) and NOT (x = 12.68) which happens when rounding takes place.
Plz suggest which is the best way to do this.