Exemplo n.º 1
0
 public int CompareTo(Term other)
 {
     if (ReferenceEquals(this, other))
     {
         return(0);
     }
     if (other is null)
     {
         return(1);
     }
     return(Limits.CompareTo(other.Limits));
 }