class MAGES::MethodReference¶
Overview¶
A reference to a method on a type. More…
class MethodReference
{
public:
// properties
System.Type ResolvedType;
string Name;
// methods
void Invoke(object self);
};
Detailed Documentation¶
A reference to a method on a type.
Properties¶
System.Type ResolvedType
Gets the type.
string Name
Gets the name of the method.
Methods¶
void Invoke(object self)
Invoke the method on the given object.
Parameters:
self |
The object instance. |