I have two list of date. I have to compare both list and find missing date. My first list looks like this:
2015-07-21
2015-07-22
2015-07-23
2015-07-24
2015-07-25
2015-07-26
2015-07-27
My second list looks like this
2015-07-21
2015-07-22
2015-07-23
2015-07-25
2015-07-26
2015-07-27
I have to find the missing date between the two list :
I tried this
var anyOfthem = firstList.Except(secondList);
But it didn't work. Can anyone help me with this ?
secondList
. So it's something completely different from what you want. – Alisha