public bool Equals(InterlockedBoolean other)
 {
     return(this.Equals(other.GetValue()));
 }
 /// <inheritdoc />
 public int CompareTo(InterlockedBoolean other)
 {
     return(this.GetValue().CompareTo(other.GetValue()));
 }