AgentMulder.Containers.StructureMap.Registrations.StructureMapConvention.IsChild C# (CSharp) Method

IsChild() private method

private IsChild ( IType type ) : bool
type IType
return bool
        private bool IsChild(IType type)
        {
            return IsPrimitiveArray(type) || (!type.IsArray() && !IsSimple(type));
        }