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