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

IsPrimitiveArray() private method

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