When formatting a string as opposed to a DateTime, does the culture ever come into play? Are there any examples of strings that would be formatted differently with two different cultures?
|
I don't believe so in the current Framework. But if Microsoft ever implements this suggestion on the Connect feedback site, it includes a suggestion to have a format specifier to force upper case:
Such formatting would be culture-specific. |
|||||
|
|
|
If you are displaying a string that is stored as a resource it will make a difference if you have separate strings for different cultures (you'd use CultureInfo.CurrentUICulture). For example error messages accessed via a ResourceManager. |
||||
|
|
|
|
|||
|
|
|
There are many scenarios when you need culture based formatting. For example: - Number Format 5.25 in English is written as 5,25 in French So, if you want to display French formatted number in your program which is in English culture the |
|||||||||||
|