Example #1
0
        public override bool Equals(System.Object obj)
        {
            SerializableSystemType temp = obj as SerializableSystemType;

            if ((object)temp == null)
            {
                return(false);
            }

            return(this.Equals(temp));
        }
Example #2
0
 public bool Equals(SerializableSystemType _Object)
 {
     //return m_AssemblyQualifiedName.Equals(_Object.m_AssemblyQualifiedName);
     return(_Object.SystemType.Equals(SystemType));
 }