Dictionary<DateTime, int> data1
Dictionary<DateTime, int> data2
not sorted
if the dates in data1 is from **1/1/2000 - 1/1/2009** and the dates in data2 is from **1/1/2001 - 1/1/2007** then both Dictionaries<> should have the date ranging from **1/1/2001 - 1/1/2007**
it could be the other way around.
bascailly i need to remove the entries that are outside of the smaller range how can i do this using c# and linq?