Is Enumerable Type - CSharp System.Reflection

CSharp examples for System.Reflection:Type

Description

Is Enumerable Type

Demo Code


using System.Threading.Tasks;
using System.Text;
using System.Runtime.Serialization;
using System.Runtime.CompilerServices;
using System.Reflection.Emit;
using System.Reflection;
using System.Linq;
using System.IO;/*from  ww  w.j av  a 2s .  co m*/
using System.Globalization;
using System.Collections.Generic;
using System;

public class Main{
        public static bool IsEnumerableType(this Type t)
        {
            return t.IsContainerType(typeof(IEnumerable<>));
        }
        public static bool IsContainerType(this Type t, Type containerType)
        {
            try
            {
                return
                    (t.IsGenericType() && t.GetGenericTypeDefinition() == containerType) ||
                    t.GetInterfaces().Any(i => i.IsGenericType() && i.GetGenericTypeDefinition() == containerType);
            }
            catch (Exception) { return false; }
        }
}

Related Tutorials