There is a class
public class DB { public string vopros { get; set; } public string otvet { get; set; } public string url { get; set; } } There are two lists
List<DB> list1 = new List<DB>(); List<DB> list2 = new List<DB>(); How to compare these two list ? so that for example in list3 were those elements that are in the first and not in the second?
Going through the cycle I think is not so good. Maybe there is a better solution?