Beispiel #1
0
 public bool Equals(T other)
 {
     if (Wrapped == null)
     {
         return(other == null);
     }
     return(Wrapped.Equals(other));
 }
Beispiel #2
0
 public bool Equals(WAbstract <T> other)
 {
     if (Wrapped == null)
     {
         return(other.Wrapped == null);
     }
     return(Wrapped.Equals(other.Wrapped));
 }
Beispiel #3
0
        public override bool Equals(object obj)
        {
            var other = (WAbstract <T>)obj;

            if (Wrapped == null)
            {
                return(other.Wrapped == null);
            }
            return(Wrapped.Equals(other.Wrapped));
        }