Right now I have
double numba = 5212.6312 String.Format(\"{0:C}\", Convert.ToInt32(numba) )
This will give me
$5,213.00 >
I think the right way to achieve your goal is with this:
Thread.CurrentThread.CurrentCulture.NumberFormat.CurrencyDecimalDigits = 0;
and only then you should do the Format call:
String.Format("{0:C0}", numba)