Using C#, I want to format a decimal to only display two decimal places and then I will take that decimal and subtract it to another decimal. I would like to be able to do t
You don't want to format it then, but to round it. Try the Math.Round function.