本文介绍了如何使用linq查找列表中的列表conatins特定的字符串值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嗨朋友们,
我有一个更新,可以在列表集合的列表中找到字符串内容,
如何使用LINQ解决这个问题,任何一个给出更好的C#或Vb.net解决方案
我尝试过:
MainList As List(Of List(Of String))= Nothing
For Each subList As List(Of String)在MainList
如果subList(1)= Searchvalue那么
retun true
EndIf
下一个
解决方案
Hi Friends,
I have one update to find string content is available in list within list collection,
How to solve this using LINQ, Any one give the better solution in C# or Vb.net
What I have tried:
MainList As List(Of List(Of String)) = Nothing
For Each subList As List(Of String) In MainList If subList(1)=Searchvalue Then retun true EndIf Next
解决方案
这篇关于如何使用linq查找列表中的列表conatins特定的字符串值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!