P
Peter
Hi
I have run "FxCop" on one of my programs, and got a lot of warnings
about using int.ToString() without a "format provider".
The help for this warning says I can use a CultureInfo as a
FormatProvider. But what difference can this make?
For example, if I have the integer
int i = 123456789;
What CultureInfo object will give a different result than "123456789"
for
string s = i.ToString(cultureInfo);
Thanks,
Peter
I have run "FxCop" on one of my programs, and got a lot of warnings
about using int.ToString() without a "format provider".
The help for this warning says I can use a CultureInfo as a
FormatProvider. But what difference can this make?
For example, if I have the integer
int i = 123456789;
What CultureInfo object will give a different result than "123456789"
for
string s = i.ToString(cultureInfo);
Thanks,
Peter