I have two lists
List 01 => { A, B, C, D, E } List 02 => { F, F, F, F, E }
I need to check if one element of List 02 exists
List 02
list1.Intersect(list2).Any()
This will be most performant as it uses HashSets.