I have a field that displays a value (lets call it startTime) in ShortTimeString() format & would like to compare this to DateTime.Now in such a way that:
if (startTime.AddMinutes(5) > DateTime.Now){ //do a thing; }
(if startTime was 5 minutes ago or greater, do a thing)
Need a way to convert startTime from a String back to a DateTime so that I can then compare.