Exemple #1
0
        public override bool Equals(object obj)
        {
            AresServiceResponseError temp = obj as AresServiceResponseError;

            if (temp == null)
            {
                return(false);
            }
            return(this.Equals(temp));
        }
Exemple #2
0
 public bool Equals(AresServiceResponseError value)
 {
     if (object.ReferenceEquals(null, value))
     {
         return(false);
     }
     if (object.ReferenceEquals(this, value))
     {
         return(true);
     }
     return(this.typeStored == value.typeStored);
 }