Home
executes a method from a string. this can only call functions from within nMethod. don't worry, more will be added to take advantage of this functionality. you can pass it one or more 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 execString(
	string typeName,
	string methodName,
	params Object[] parameters
)
Public Shared Function execString ( _
	typeName As String, _
	methodName As String, _
	ParamArray parameters As Object() _
) As Object
public:
static Object^ execString(
	String^ typeName, 
	String^ methodName, 
	... array<Object^>^ parameters
)

Parameters

typeName
String
the class the method belongs to
methodName
String
the name of the method
parameters
array< Object >[]()[]

[Missing <param name="parameters"/> documentation for "M:nTools.nMethod.execString(System.String,System.String,System.Object[])"]

Return Value

returns an object if it has anything to return

See Also