public bool Equals(TypeFacade other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.spec, spec));
 }
Esempio n. 2
0
 public bool Equals(TypeFacade other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.WrappedValue, WrappedValue));
 }
 public bool Equals(TypeFacade other) {
     if (ReferenceEquals(null, other)) { return false; }
     if (ReferenceEquals(this, other)) { return true; }
     return Equals(other.WrappedValue, WrappedValue);
 }