StoryTeller.Project.IsSystemTypeCandidate C# (CSharp) Method

IsSystemTypeCandidate() public static method

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