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

CreateEmptyTypedList() private static method

private static CreateEmptyTypedList ( Type argType ) : IList
argType System.Type
return IList
        private static IList CreateEmptyTypedList(Type argType)
        {
            return Activator.CreateInstance(typeof(List<>).MakeGenericType(argType)) as IList;
        }