/// <inheritdoc/> public int CompareTo(InterlockedTimeSpan other) { return(GetValue().CompareTo(other.GetValue())); }
/// <inheritdoc/> public bool Equals(InterlockedTimeSpan other) { return(Equals(other.GetValue())); }
/// <summary> /// Converts to <paramref name="value"/> to a <see cref="TimeSpan"/> representation. /// </summary> /// <param name="value"> /// The value to convert. /// </param> /// <returns> /// The <see cref="TimeSpan"/> representation of the given <paramref name="value"/>. /// </returns> public static TimeSpan ToTimeSpan(InterlockedTimeSpan value) { return(value.GetValue()); }