Answers for "how to find one list items in another list item c#"

C#
0

get elements in list in another list c#

result = lista.Where(a => listb.Any(b => a.ToLower() == b.ToLower()));
Posted by: Guest on June-23-2021
1

c# find element in list of list

var element = (from sublist in userList
               from item in sublist
               where item.uniqueidentifier == someid
               select item).FirstOrDefault();
Posted by: Guest on June-24-2020

Code answers related to "how to find one list items in another list item c#"

C# Answers by Framework

Browse Popular Code Answers by Language