Finds the method in the class with the specified name, arguments, return type, and modifiers.
[Visual Basic] Overloads Function FindMethod( _ ByVal name As String, _ ByVal arguments() As ICodeClass, _ ByVal returnType As ICodeClass, _ ByVal modifiers As Integer _ ) As ICodeMethod [C#] ICodeMethod FindMethod( string name, ICodeClass[] arguments, ICodeClass returnType, int modifiers ); [C++] ICodeMethod* FindMethod( String* name, ICodeClass* arguments[], ICodeClass* returnType, int modifiers ) = 0; [JScript] function FindMethod( name : String, arguments : ICodeClass[], returnType : ICodeClass, modifiers : int ) : 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