Azavea.Open.Common.Chronometer.GetSplitSeconds C# (CSharp) Method

GetSplitSeconds() public method

For display purposes, reports the split time in seconds.
public GetSplitSeconds ( ) : string
return string
        public string GetSplitSeconds()
        {
            TimeSpan split = GetSplit();
            return split.TotalSeconds + " sec.";
        }