Dev2.TypeExtensionMethods.IsEnumerable C# (CSharp) Метод

IsEnumerable() публичный статический Метод

public static IsEnumerable ( this type ) : bool
type this
Результат bool
        public static bool IsEnumerable(this Type type)
        {
            return type != typeof (string) && type.GetInterfaces().Contains(typeof (IEnumerable));
        }
TypeExtensionMethods