Get Read Only Collection Interface - CSharp System.Reflection

CSharp examples for System.Reflection:Interface

Description

Get Read Only Collection Interface

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.j  a  v  a2s.c  o  m
using System.Globalization;
using System.Collections.Generic;
using System;

public class Main{
        public static Type GetReadOnlyCollectionInterface(this Type t)
        {
            return t.GetContainerInterface(typeof(IReadOnlyCollection<>));
        }
        public static Type GetContainerInterface(this Type t, Type containerType)
        {
            return
                (t.IsGenericType() && t.GetGenericTypeDefinition() == containerType)
                    ? t
                    : t.GetInterfaces().First(i => i.IsGenericType() && i.GetGenericTypeDefinition() == containerType);
        }
}

Related Tutorials