C# CSearch 带有通配符的元组列表
我有一个这样的列表:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)