Adf.Base.Domain.ListPropertyParser.IsParsable C# (CSharp) Method

IsParsable() public method

public IsParsable ( Type type ) : bool
type System.Type
return bool
        public bool IsParsable(Type type)
        {
            return type.IsGenericType && typeof(IList).IsAssignableFrom(type);
        }