I have a sorted dictionary that contains measured data points as key/value pairs. To determine the value for a non-measured data point I want to extrapolate the value between t
Possible you're asking about following:
myDictionary.Keys.Where(w => w > start && w < end)