I need to convert decimal to string, in this rulers:
120.00 - \"120\" 120.01 - \"120.01\" 120.50 - \"120.50\"
Use, decimal.ToString() method. You can specify format with that method if you need:
decimal d = 120.00; string ds = d.ToString("#,#.00#"); // ds is a formated string of d's value