Finds the method in the class with the specified name, arguments, and return type.
[Visual Basic] Overloads Function FindMethod( _ ByVal name As String, _ ByVal arguments() As ICodeParameter, _ ByVal returnType As ICodeClass _ ) As ICodeMethod [C#] ICodeMethod FindMethod( string name, ICodeParameter[] arguments, ICodeClass returnType ); [C++] ICodeMethod* FindMethod( String* name, ICodeParameter* arguments[], ICodeClass* returnType ) = 0; [JScript] function FindMethod( name : String, arguments : ICodeParameter[], returnType : ICodeClass ) : ICodeMethod;
An ICodeMethod object representing the method in the class matching the specified parameters. If no matching method is found, a null reference (in Visual Basic Nothing) is returned.
ICodeClass Interface | ICodeClass Members | System.ComponentModel.Design.CodeModel Namespace | ICodeClass.FindMethod Overload List