StoryTeller.Project.IsSystemTypeCandidate C# (CSharp) Méthode

IsSystemTypeCandidate() public static méthode

public static IsSystemTypeCandidate ( Type type ) : bool
type Type
Résultat bool
        public static bool IsSystemTypeCandidate(Type type)
        {
            return type.CanBeCastTo<ISystem>() && type.IsConcreteWithDefaultCtor() &&
                   !type.IsOpenGeneric();
        }