Most likely, because Int32.TryParse without additional parameters will refuse to parse strings containing group separators or decimal separators:
Int32.TryParse("1.234", out temp);
Int32.TryParse("1,234", out temp);
Int32.TryParse("1234", out temp);
Thus, Int32.TryParse is probably not considered culture sensitive with FxCop.
Ruben source
share