Пример #1
0
 public bool Equals(AssemblyQualifiedTypeName obj)
 {
     if (obj == null)
     {
         return(false);
     }
     if (ReferenceEquals(this, obj))
     {
         return(true);
     }
     return(Equals(obj.type, type) && Equals(obj.assembly, assembly));
 }
Пример #2
0
        public override bool Equals(object obj)
        {
            AssemblyQualifiedTypeName other = obj as AssemblyQualifiedTypeName;

            return(Equals(other));
        }