为了账号安全,请及时绑定邮箱和手机立即绑定

在LINQ中找到List中的项目?

在LINQ中找到List中的项目?

C#
米琪卡哇伊 2019-09-18 19:19:07
这里我有一个简单的例子来查找字符串列表中的项目。通常我使用for循环或匿名委托来这样做:int GetItemIndex(string search){   int found = -1;   if ( _list != null )   {     foreach (string item in _list) // _list is an instance of List<string>     {         found++;        if ( string.Equals(search, item) )        {           break;        }      }      /* use anonymous delegate      string foundItem = _list.Find( delegate(string item) {         found++;         return string.Equals(search, item);      });      */   }   return found;}LINQ对我来说是新的。我很好奇我是否可以使用LINQ来查找列表中的项目?怎么可能?
查看完整描述

3 回答

  • 3 回答
  • 0 关注
  • 440 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信