CSharp examples for System.Reflection:Type
Is Set Type
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 w w .jav a2 s . c o m*/ using System.Globalization; using System.Collections.Generic; using System; public class Main{ public static bool IsSetType(this Type t) { return t.IsContainerType(typeof(ISet<>)); } 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; } } }