public override MethodDesc GetMethod(string name, MethodSignature signature)
        {
            MethodDesc method = _rawCanonType.GetMethod(name, signature);

            if (method == null)
            {
                return(null);
            }
            return(Context.GetMethodForRuntimeDeterminedType(method.GetTypicalMethodDefinition(), this));
        }