云服务器免费试用

c# list.contains 是否有替代的查找方法

服务器知识 0 1239

在C#中,List<T>.Contains方法用于检查列表中是否包含指定的元素

c# list.contains 是否有替代的查找方法

  1. 使用LINQ的Any方法:
using System.Linq;

bool exists = myList.Any(item => item == targetItem);
  1. 使用IndexOf方法:
bool exists = myList.IndexOf(targetItem) != -1;
  1. 使用Exists方法:
bool exists = myList.Exists(item => item == targetItem);
  1. 使用Find方法:
bool exists = myList.Find(item => item == targetItem) != null;
  1. 使用FindIndex方法:
bool exists = myList.FindIndex(item => item == targetItem) != -1;

这些方法都可以实现类似List<T>.Contains的功能。你可以根据自己的需求和喜好选择合适的方法。

声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942@qq.com核实处理,我们将尽快回复您,谢谢合作!
若转载请注明出处: c# list.contains 是否有替代的查找方法
本文地址: https://solustack.com/171241.html

相关推荐:

网友留言:

我要评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。