I am trying to format outside of Syncfusion a String for a Cell in an EXCEL-file.
But the result in c# is not the same as in Excel, I need need a pricision of 2 digit without any currency sign.
This works:
String.Format(CultureInfo.GetCultureInfo("de-DE"), "{0:C}", someValue)
But that is not what I am looking for.
I need 2 digits and no sign, that is what I tried:
String.Format(CultureInfo.GetCultureInfo("de-DE").NumberFormat, "{0:0.00}", someValue)
How to do this ?