Can I use a fancy LINQ query to return a List
, by passing it in a method (List
Given an IEqualityComparer
for FileInfo
shown below:
public class FileInfoEqualityComparer : IEqualityComparer<FileInfo>
{
public bool Equals(FileInfo x, FileInfo y)
{
return x.FullName.Equals(y.FullName);
}
public int GetHashCode(FileInfo obj)
{
return obj.FullName.GetHashCode();
}
}
You can use following code to find the difference between two lists:
var allItems = newList.Union(oldList);
var commonItems = newList.Intersect(oldList);
var difference = allItems.Except(commonItems, new FileInfoEqualityComparer());
To find items added to newList
list, use following code:
var addedItems = newList.Except(oldList, new FileInfoEqualityComparer());