executes a method belonging to an external namespace/project. it allows the use for any number of parameters (as objects)

Namespace:  nTools
Assembly:  nMethod (in nMethod.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static Object execExtString(
	Object classObject,
	string methodName,
	params Object[] parameters
)
Public Shared Function execExtString ( _
	classObject As Object, _
	methodName As String, _
	ParamArray parameters As Object() _
) As Object
public:
static Object^ execExtString(
	Object^ classObject, 
	String^ methodName, 
	... array<Object^>^ parameters
)

Parameters

classObject
Object
the class instantiation that the method belongs to
methodName
String
name of the method
parameters
array< Object >[]()[]
one or more parameters for the method you wish to call

Return Value

returns an object if it has anything to return

See Also