vote up 1 vote down star

The FxCop Globalization Rule, 'Specify IFormat Provider', does not catch Int32.TryParse violations for me. Is this a bug, or am I doing something wrong?

flag

76% accept rate

1 Answer

vote up 1 vote down check

Quite likely because Int32.TryParse without additional options will refuse to parse strings containing either grouping separators or decimal separators:

Int32.TryParse("1.234", out temp);  // => false
Int32.TryParse("1,234", out temp);  // => false
Int32.TryParse("1234", out temp);   // => true, temp = 1234

So Int32.TryParse is probably not regarded as culture sensitive by FxCop.

link|flag
Thanks, I did not realize that Int32.TryParse( "0.0", out temp ); //=> false – jyoung Aug 24 at 23:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.