Find the closest time from a list of times

后端 未结 11 817
眼角桃花
眼角桃花 2020-12-02 23:48

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

11条回答
  •  半阙折子戏
    2020-12-03 00:03

    var closestTime = (from t in listOfTimes
                       orderby (t - fileInfo.CreationTime).Duration()
                       select t).First();
    

提交回复
热议问题