Method | Description | |
---|---|---|
BooMethods ( |
||
GetCount ( ) : int | ||
GetDescription ( int index ) : string | ||
GetName ( int index ) : string | ||
GetParameterCount ( int index ) : int | ||
GetParameterInfo ( int index, int parameter, string &name, string &display, string &description ) : void | ||
GetType ( int index ) : string |
Method | Description | |
---|---|---|
GetMethodByIndex ( int index ) : |
Get the method for an index. This covers up the way we structure methods, in that the first method is the default and it has a collection of overloads. In VS this is flat, so index 0 is actually our default and index 1 is our first overload.
|
public BooMethods ( |
||
method | ||
return | System.Collections.Generic |
public GetParameterInfo ( int index, int parameter, string &name, string &display, string &description ) : void | ||
index | int | |
parameter | int | |
name | string | |
display | string | |
description | string | |
return | void |