C# CSearch 带有通配符的元组列表

发布于 2024-10-14 23:58:32 字数 236 浏览 1 评论 0原文

我有一个这样的列表:

List<Tuple<int, int, int>> list = new List<Tuple<int, int, int>>();

现在我需要删除列表中具有特定 Item1 和 Item3 的所有元组,但 Item2 是什么并不重要。

我不知道如何实现这一点。

谁能帮助我吗? 谢谢!

I have a list like this:

List<Tuple<int, int, int>> list = new List<Tuple<int, int, int>>();

Now I need to remove all the Tuple's in the list with a certain Item1 and Item3, but it doesn't matter what Item2 is.

I have no clue how to acchief this.

Can anyone help me?
Thanks!

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

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

发布评论

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

评论(1

樱花落人离去 2024-10-21 23:58:32
list.RemoveAll(t => t.Item1 == cond1 && t.Item3 == cond3);
list.RemoveAll(t => t.Item1 == cond1 && t.Item3 == cond3);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文