Aqueduct.SitecoreLib.DataAccess.ValueResolvers.DomainEntityListResolver.IsGenericIList C# (CSharp) Method

IsGenericIList() private static method

private static IsGenericIList ( Type propertyType ) : bool
propertyType System.Type
return bool
        private static bool IsGenericIList(Type propertyType)
        {
            return propertyType.GetGenericTypeDefinition() == typeof(IList<>);
        }
    }