MonobjcMonobjc Documented Class Library
ExpressionForFunctionArguments Method (name, parameters)
NamespacesMonobjc.FoundationNSExpressionExpressionForFunctionArguments(NSString, NSArray)

Returns a new expression that will invoke one of the predefined functions.

Original signature is '+ (NSExpression *)expressionForFunction:(NSString *)name arguments:(NSArray *)parameters'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static NSExpression ExpressionForFunctionArguments(
	NSString name,
	NSArray parameters
)
Public Shared Function ExpressionForFunctionArguments ( _
	name As NSString, _
	parameters As NSArray _
) As NSExpression
public:
static NSExpression^ ExpressionForFunctionArguments(
	NSString^ name, 
	NSArray^ parameters
)
Parameters
name (NSString)
The name of the function to invoke.
parameters (NSArray)
An array containing NSExpression objects that will be used as parameters during the invocation of selector.
Return Value
A new expression that invokes the function name using the parameters in parameters.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)