Is Read Only List Type - CSharp System.Reflection

CSharp examples for System.Reflection:Type

Description

Is Read Only List 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 w ww . java  2s .c  o  m*/
using System.Globalization;
using System.Collections.Generic;
using System;

public class Main{
        public static bool IsReadOnlyListType(this Type t)
        {
            return t.IsContainerType(typeof(IReadOnlyList<>));
        }
        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