Esempio n. 1
0
        public static bool RegistryExists(IEnumerable <Registry> all, Registry registry)
        {
            if (all.Contains(registry))
            {
                return(true);
            }

            var type = registry.GetType();

            if (type == typeof(Registry))
            {
                return(false);
            }
            if (type == typeof(ConfigurationExpression))
            {
                return(false);
            }

            var constructors = type.GetConstructors();

            if (constructors.Count() == 1 && !constructors.Single().GetParameters().Any())
            {
                if (all.Any(x => x.GetType() == type))
                {
                    return(true);
                }
                if (all.Any(x => x.GetType().AssemblyQualifiedName == type.AssemblyQualifiedName))
                {
                    return(true);
                }
            }

            return(false);
        }
Esempio n. 2
0
        public bool Equals(Registry other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }
            if (other.GetType() == typeof(Registry) && GetType() == typeof(Registry))
            {
                return(false);
            }
            if (other.GetType() == GetType() || other.GetType().AssemblyQualifiedName == GetType().AssemblyQualifiedName)
            {
                return(!GetType().GetTypeInfo().IsNotPublic);
            }

            return(false);
        }