IKVM.Reflection.Type.FindMethod C# (CSharp) Method

FindMethod() private method

private FindMethod ( string name, MethodSignature signature ) : IKVM.Reflection.MethodBase
name string
signature MethodSignature
return IKVM.Reflection.MethodBase
        internal virtual MethodBase FindMethod(string name, MethodSignature signature)
        {
            foreach (MethodBase method in __GetDeclaredMethods())
            {
                if (method.Name == name && method.MethodSignature.Equals(signature))
                {
                    return method;
                }
            }
            return null;
        }

Same methods

Type::FindMethod ( List methods, IKVM.Reflection.MethodInfo method ) : bool