I want to use the binary search option on a sorted list in c# 4.0. I have been looking at older binary searches:
How would I search a range of ranged values using C#
I would like some help in how I would do a range search between two dates using the binarySearch. I have a list which has many dates and I want to quickly search through this large list between two dates and return the found items if there is any. I though a binary search would be quick as it will quickly get rid of unnecessary comparisons as it is sorted.