Hi
I am having member varibale as
"double Salary = 15000.0315"
I need a code to show in a currency format and round of that value. I need the expected result
as 15,000.
Is that possible in c#. Please let me know.
Thanks.
Have a great day.
try,
Math.Round(Salary, 1).ToString();
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.