I need to format a negative currency as follow: $(10.00)
I tried to use string.Format("{0:C}", itemprice) but that gives me this result ($10.00) (the $ inside the parenthesis
i also tried
string fmt = "##;(##)";
itemprice.ToString(fmt);
but it gives me the same as before ($10.00)
Any idea on how to get a result like this: $(10.00).