Mono.Cecil.Mixin.IsTypeOf C# (CSharp) Method

IsTypeOf() public static method

public static IsTypeOf ( this self, string @namespace, string name ) : bool
self this
@namespace string
name string
return bool
        public static bool IsTypeOf(this TypeReference self, string @namespace, string name)
        {
            return self.Name == name
                && self.Namespace == @namespace;
        }