Ancestry.QueryProcessor.Compile.ReflectionUtility.IsNary C# (CSharp) Method

IsNary() public static method

public static IsNary ( System type ) : bool
type System
return bool
        public static bool IsNary(System.Type type)
        {
            return type.IsGenericType && typeof(IEnumerable).IsAssignableFrom(type);
        }