I have been wondering about this one for quite some time, but I cannot seem to find a definitive answer. Whenever I convert an integer to a string using the ToString() method, and I run a code analysis, I get the following warning:
CA1305: Microsoft.Globalization : Because the
behavior of ‘int.ToString()’ could
vary based on the current user’s
locale settings, replace this call in
‘Class.Method()’ with a call to
‘int.ToString(IFormatProvider)’.
If the result of ‘int.ToString(
IFormatProvider)’ will be displayed to
the user, specify
‘CultureInfo.CurrentCulture’ as the
‘IFormatProvider’ parameter.
Otherwise, if the result will be
stored and accessed by software, such
as when it is persisted to disk or to
a database, specify
‘CultureInfo.InvariantCulture’.
This is the very well-known generic CA1305 warning, which gets shown whenever you make a call to a method that has an overload that accepts an IFormatProvider parameter. While this is a very rightly warning in almost all cases, I can’t think of anything that could go wrong when calling the default ToString() without any format or formatprovider on an integer. So please, if anyone knows of anything that could go wrong, enlighten me. I’m guessing there must be a good reason for the IFormatProvider overload.
By the way, I do always make the call using the IFormatProvider overload, because it also seems to have a performance benefit. If anyone has any insightful comments on this, feel free to share them as well.
There are things which I would imagine could easily affect the result:
Short but complete example of how it could affect things, using the
NegativeSignproperty:Output: