Home
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 execStaticString(
	string assembly,
	string nameSpace,
	string typeName,
	string methodName,
	params Object[] parameters
)
Public Shared Function execStaticString ( _
	assembly As String, _
	nameSpace As String, _
	typeName As String, _
	methodName As String, _
	ParamArray parameters As Object() _
) As Object
public:
static Object^ execStaticString(
	String^ assembly, 
	String^ nameSpace, 
	String^ typeName, 
	String^ methodName, 
	... array<Object^>^ parameters
)

Parameters

assembly
String
the project the namespace belongs to
nameSpace
String

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

typeName
String
the class type 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