Is there a way to format, lets say, this number 36.9308706956375 into 36,930.87 ? I tried all kind of pattern including the one below it doesn't seem to work.It return 36,93.
decimal dec = 36.9308706956375;
var num = String.Format(CultureInfo.GetCultureInfo("ro-RO"), "{0:#,##0.00}", dec);
Thanks