public override bool Equals(object obj)
        {
            SerializableSystemType temp = obj as SerializableSystemType;

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

            return(Equals(temp));
        }
Esempio n. 2
0
 public TypeSearchData(Type type, int amount)
 {
     Type           = type;
     Amount         = amount;
     SerializedVars = new List <string>();
 }
 public bool Equals(SerializableSystemType _Object)
 {
     //return m_AssemblyQualifiedName.Equals(_Object.m_AssemblyQualifiedName);
     return(_Object.SystemType.Equals(SystemType));
 }