the default monetary sign for money is in $ sign, however I would like to somehow change it to a different currency. example like, ₱ or £.
here is my code as of the moment.
private void cash_Leave(object sender, EventArgs e)
{
double value;
if(Double.TryParse(cash.Text, out value))
{
cash.Text = String.Format(System.Globalization.CultureInfo.CurrentCulture, "{0:C2}", value);
}
else
{
cash.Text = String.Empty;
}
}