So, here\'s the scenario. I have a file with a created time, and I want to choose a time from a list of times that that file\'s created time is closest or equal too...what w
var closestTime = (from t in listOfTimes orderby (t - fileInfo.CreationTime).Duration() select t).First();