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