Store
found items in one List.
not found items in another List. I got first part by doing this
for(int i = 0; i < list1.Count; i++) { for (int j = 0; j < list2.Count; j++) { if (list1[i] == list2[j])) { list3.Add(list1[i]); continue; } } }
I need the "Second part." There are still better ways to search a list but I preferred this.