将元组用作可枚举时,fxcop 会在成员签名中嵌套泛型类型错误
嗨,我想返回一对字符串。我现在使用 IEnumerable
作为返回类型,但 fxcop 发出警告。我将并发包与 Parallel.For 一起使用,所以想避免 ConcurrentDictionary
或 ConcurrentDictionary
。新的类或结构也没有意义。什么是正确的解决方案。
多谢, 奥姆卡
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您认为您使用的类型是最佳的,您应该忽略/抑制警告。
但是,您可能应该将
Tuple
替换为具有有意义的属性名称的自定义类。If you feel the the type you're using is optimal, you should ignore / suppress the warning.
However, you should probably replace the
Tuple<string, string>
with a custom class that has meaningful property names.