gpt4 book ai didi

c# - FxCop 'Specify IFormat Provider' 是否应该捕获 Int32.TryParse 违规?

转载 作者:行者123 更新时间:2023-11-30 18:10:31 25 4
gpt4 key购买 nike

FxCop 全局化规则“指定 IFormat 提供程序”不会为我捕获 Int32.TryParse 违规。这是一个错误,还是我做错了什么?

最佳答案

很有可能,因为没有附加选项的 Int32.TryParse 将拒绝解析包含分组分隔符或小数分隔符的字符串:

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

因此 Int32.TryParse 可能不被 FxCop 视为文化敏感。

关于c# - FxCop 'Specify IFormat Provider' 是否应该捕获 Int32.TryParse 违规?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1325248/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com