Get the number of ticks that this timespan represents. This can be used to construct another TimeSpan:
long ticks = myTimeSpan.ticks; TimeSpan copyOfMyTimeSpan = TimeSpan(ticks);
See Implementation
Get the number of ticks that this timespan represents. This can be used to construct another TimeSpan: