System.Convert parameters for currency
I am using the following to convert a calculation to a string format but I need to learn how to convert this result into currency format.
Double Rate = 55.64556453
tbxSRate.Text = '$' + System.Convert.ToString(Rate);
What is the syntax to limit decimal places to (2)
Thank you
|