Finds the method in the class with the specified name, arguments, return type, and modifiers.
Finds the method in the class with the specified name, arguments, return type, and modifiers.
[Visual Basic] Overloads Function FindMethod(String, ICodeClass(), ICodeClass) As ICodeMethod
[C#] ICodeMethod FindMethod(String, ICodeClass[], ICodeClass);
[C++] ICodeMethod* FindMethod(String*, ICodeClass[], ICodeClass) = 0;
[JScript] function FindMethod(String, ICodeClass[], ICodeClass) : ICodeMethod;
Finds the method in the class with the specified name, arguments, return type, and modifiers.
[Visual Basic] Overloads Function FindMethod(String, ICodeClass(), ICodeClass, Integer) As ICodeMethod
[C#] ICodeMethod FindMethod(String, ICodeClass[], ICodeClass, int);
[C++] ICodeMethod* FindMethod(String*, ICodeClass[], ICodeClass, int) = 0;
[JScript] function FindMethod(String, ICodeClass[], ICodeClass, int) : ICodeMethod;
Finds the method in the class with the specified name, arguments, and return type.
[Visual Basic] Overloads Function FindMethod(String, ICodeParameter(), ICodeClass) As ICodeMethod
[C#] ICodeMethod FindMethod(String, ICodeParameter[], ICodeClass);
[C++] ICodeMethod* FindMethod(String*, ICodeParameter[], ICodeClass) = 0;
[JScript] function FindMethod(String, ICodeParameter[], ICodeClass) : ICodeMethod;
Finds the method in the class with the specified name, arguments, return type, and modifiers.
[Visual Basic] Overloads Function FindMethod(String, ICodeParameter(), ICodeClass, Integer) As ICodeMethod
[C#] ICodeMethod FindMethod(String, ICodeParameter[], ICodeClass, int);
[C++] ICodeMethod* FindMethod(String*, ICodeParameter[], ICodeClass, int) = 0;
[JScript] function FindMethod(String, ICodeParameter[], ICodeClass, int) : ICodeMethod;
ICodeClass Interface | ICodeClass Members | System.ComponentModel.Design.CodeModel Namespace