UnityEditor.EditorExtensionMethods.IsArrayOrList C# (CSharp) Method

IsArrayOrList() private method

private IsArrayOrList ( Type listType ) : bool
listType System.Type
return bool
        internal static bool IsArrayOrList(Type listType)
        {
            return (listType.IsArray || (listType.IsGenericType && (listType.GetGenericTypeDefinition() == typeof(List<>))));
        }