I am searching for a solution for truncating the seconds from a TimeSpan object. This is not a formatting request, this is removal.
Initial State var myTimeSpan = new TimeSpan(2, 1, 30, 10);
Desired State 02:01:30:00
Property Change Issue: I have a timer that checks the time every second (desired). The result of having seconds attached to the TimeSpan object is that it fires the PropertyChanged event every second.
Removing the seconds portion will slow the PropertyChanged event firing to 1 minute interval (desired).
Ideas Appreciated - Glenn