Tools.Reflection Class
Static Public Member Functions | |
static void | InvokePrivateInstanceMethod< T > (T instance, string methodName) |
Invokes the instance method. This is intended for methods that don't have parameters. More... | |
static void | InvokePrivateInstanceMethod< T > (T instance, string methodName, object[] argValues) |
Invokes the instance method. This is intended for methods with parameters. More... | |
Member Function Documentation
◆ InvokePrivateInstanceMethod< T >() [1/2]
| inlinestatic |
Invokes the instance method. This is intended for methods that don't have parameters.
- Parameters
instance Instance. methodName Method name.
- Template Parameters
T The 1st type parameter.
◆ InvokePrivateInstanceMethod< T >() [2/2]
| inlinestatic |
Invokes the instance method. This is intended for methods with parameters.
- Parameters
instance Instance. methodName Method name.
- Template Parameters
T The 1st type parameter.