Gets whether or not a method of the specified name exists in the code.
[Visual Basic] Function GetDoesMethodExist( _ ByVal name As String, _ ByVal argTypes() As Type _ ) As Boolean [C#] bool GetDoesMethodExist( string name, Type[] argTypes ); [C++] bool GetDoesMethodExist( String* name, Type* argTypes[] ) = 0; [JScript] function GetDoesMethodExist( name : String, argTypes : Type[] ) : Boolean;
true if the method exists, otherwise false.
ICodeNavigatorService Interface | ICodeNavigatorService Members | System.ComponentModel.Design Namespace