double MathRound

 
Hi,

I was woundering if it is possible to round a number like this:

0.123134234 would become this 0.123
0.756524523 would become this 0.756
12.93453452 would become this 12.934


thanks a lot,,,
 
Multiply by 1000, use MathRound, then divide by 1000.

Or, use NormalizeDouble(number, 3);