Answers for "c# format currency c#"

C#
1

c# format decimal as currency

private decimal _amount;

public string FormattedAmount
{
    get { return string.Format("{0:C}", _amount); }
}
Posted by: Guest on October-21-2020
1

format of money value in c#

Type typeToCreate = typeof(Headers);
object headers = Activator.CreateInstance(typeToCreate);
Posted by: Guest on June-08-2021

C# Answers by Framework

Browse Popular Code Answers by Language