Метод | Описание | |
---|---|---|
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 |
Метод | Описание | |
---|---|---|
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 | ||
Результат | System.Collections.Generic |
public GetDescription ( int index ) : string | ||
index | int | |
Результат | string |
public GetParameterCount ( int index ) : int | ||
index | int | |
Результат | int |
public GetParameterInfo ( int index, int parameter, string &name, string &display, string &description ) : void | ||
index | int | |
parameter | int | |
name | string | |
display | string | |
description | string | |
Результат | void |