[This is preliminary documentation and is subject to change.]

Executes method in current thread.

Namespace:  Phoenix.Runtime
Assembly:  Phoenix (in Phoenix.dll) Version: 0.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public Object Run(
	MethodOverloads method,
	params Object[] rawParams
)
Public Function Run ( _
	method As MethodOverloads, _
	ParamArray rawParams As Object() _
) As Object
public:
Object^ Run(
	MethodOverloads^ method, 
	... array<Object^>^ rawParams
)

Parameters

method
MethodOverloads
Method or list of overloads to execute.
rawParams
array< Object >[]()[]
Parameter list convertible to at least one method overload. Otherwise exception is thrown.

Return Value

Return value of method or null if none.

See Also