show/hide this revision's text 2 Clarified what I meant (hopefully) and fixed some typos...

No, you can't.

From your links link to the MSDN articles about standard format strings, you'l you'll find:

The actual negative number pattern, number group size, thousand separator, and decimal separator are specified by the current NumberFormatInfo object.

So the standard formatting specifiers will vary depending on which culture the program is running under.

Since your custom formating specifies exactly how the number is going to look, whatever the culture the program is running under. Its allways gonna look the same.

Since the standard formatting will vary depending on which

The culture the program is running onunder isn't known during compile time, it's not possible to do this mapping without knowing the current culturea runtime property.(...and current culture

So the answer isknown only at runtime...): No, you can't map automatically, because there isn't a one-to-one consistent mapping.

show/hide this revision's text 1

No, you can't.

From your links to MSDN articles, you'l find:

The actual negative number pattern, number group size, thousand separator, and decimal separator are specified by the current NumberFormatInfo object.

So your custom formating specifies exactly how the number is going to look, whatever the culture the program is running under. Its allways gonna look the same.

Since the standard formatting will vary depending on which culture the program is running on, it's not possible to do this mapping without knowing the current culture. (...and current culture is known only at runtime...)