Topic: Format Currency with $$
Share/Save/Bookmark
Description: Shows how to format a string to currency format

 
decimal myValue = 1921.39m;
string output = String.Format("Order Value: {0:C}", myValue );
Console.WriteLine(output );