예제 #1
0
        public static bool IsOfType(this ClrInstance instance, Type type, TypesRegistry registry)
        {
            if (instance.Type == null)
            {
                return(false);
            }

            return(registry.IsInstanceOfType(instance.Type, type));
        }