Exemplo n.º 1
0
 public bool Equals(SmartEnum <T> other)
 {
     return(!object.ReferenceEquals(other, null) && value.Equals(other.value));
 }
Exemplo n.º 2
0
 public virtual int CompareTo(SmartEnum <T> other)
 {
     return(object.ReferenceEquals(other, null) ? 1 : value.CompareTo(other.value));
 }