show/hide this revision's text 2 more detail

.NET supports two types of string formatting.

I'm in a situation where existing configuration data has #,##0 style formatting. A new feature requires formatting to the same output, but the API needed for this feature only accepts formatting of type {0:n2}.

Does anyone know of a means to convert between these two representations for numeric types? DateTime can be ignored.

EDIT I've learned that:

show/hide this revision's text 1

How to convert between "#,##0" and "{0:n2}" style format string representations?

.NET supports two types of string formatting.

I'm in a situation where existing configuration data has #,##0 style formatting. A new feature requires formatting to the same output, but the API needed for this feature only accepts formatting of type {0:n2}.

Does anyone know of a means to convert between these two representations for numeric types? DateTime can be ignored.