I wonder how to compare two DateTime objects in .NET using DateTime methods Compare, CompareTo or Equals without comparing ticks.
I only need a tolerance level of milliseconds or seconds.
How can this be done?
|
feedback
|
|
You can subtract one
The call to To answer your query about the comparison methods,
| ||||
|
feedback
|
|
You could convert both DateTimes to string and compare the resulting strings. Make sure you define the string format to avoid problems on machines with different regional settings than yours. | |||
|
feedback
|
|
Generally, if you want a single compare to tell you which date is less, equal to or greater, use DateTime.Compare(). Otherwise, you can use DateTime.Equals(). To add a tolerance value, subtract one from the other and compare result to be less than some TimeSpan:
| ||||
|
feedback
|
|
Use
Other options are to create new
| ||||
|
feedback
|