Answers for "c# check if list contains exact string"

C#
1

c# string contains any of list

//linq
bool b = listOfStrings.Any(s=>myString.Contains(s));
//shorter but less clear
bool b = listOfStrings.Any(myString.Contains);
Posted by: Guest on July-06-2021
0

check list exist in list c# if matches any

List<int> nums1 = new List<int> { 2, 4, 6, 8, 10 };
List<int> nums2 = new List<int> { 1, 3, 6, 9, 12};

if (nums1.Any(x => nums2.Any(y => y == x)))
{
    Console.WriteLine("There are equal elements");
}
else
{
    Console.WriteLine("No Match Found!");
}
Posted by: Guest on November-06-2021

Code answers related to "c# check if list contains exact string"

C# Answers by Framework

Browse Popular Code Answers by Language