Class TimeSpanExtensions
- Namespace
- SunamoExtensions
- Assembly
- SunamoExtensions.dll
Extension methods for TimeSpan type
public static class TimeSpanExtensions
- Inheritance
-
TimeSpanExtensions
- Inherited Members
Methods
ToNiceString(TimeSpan)
Converts TimeSpan to a nice string format by removing trailing ":00" seconds
public static string ToNiceString(this TimeSpan timeSpan)
Parameters
timeSpanTimeSpanTimeSpan to convert
Returns
- string
Formatted string without trailing seconds if they are zero
TotalMonths(TimeSpan)
Calculates the total number of months in the TimeSpan
public static int TotalMonths(this TimeSpan timespan)
Parameters
timespanTimeSpanTimeSpan to calculate months from
Returns
- int
Total number of months (rounded down)
TotalYears(TimeSpan)
Calculates the total number of years in the TimeSpan
public static int TotalYears(this TimeSpan timespan)
Parameters
timespanTimeSpanTimeSpan to calculate years from
Returns
- int
Total number of years (rounded down)