将元组用作可枚举时,fxcop 会在成员签名中嵌套泛型类型错误

发布于 2025-01-07 09:17:54 字数 368 浏览 0 评论 0 原文

嗨,我想返回一对字符串。我现在使用 IEnumerable> 作为返回类型,但 fxcop 发出警告。我将并发包与 Parallel.For 一起使用,所以想避免 ConcurrentDictionary>ConcurrentDictionary字符串>>。新的类或结构也没有意义。什么是正确的解决方案。

多谢, 奥姆卡

Hi I want to return pair of strings. I am right now using IEnumerable<Tuple<string, string>> as a return type but fxcop gives warning. I am using concurrentBag with Parallel.For so want to avoid ConcurrentDictionary<string,IList<string>> or ConcurrentDictionary<string,Concurrentbag< string>>. Also new class or struct does not make sense. What will be the proper solution.

Thanks a lot,
Omkar

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

李白 2025-01-14 09:17:54

如果您认为您使用的类型是最佳的,您应该忽略/抑制警告。

但是,您可能应该将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文