MonobjcMonobjc Documented Class Library
ExpressionForMinusSetWith Method (left, right)
NamespacesMonobjc.FoundationNSExpressionExpressionForMinusSetWith(NSExpression, NSExpression)

Returns a new NSExpression object that represent the subtraction of a given collection from a given set.

Original signature is '+ (NSExpression *)expressionForMinusSet:(NSExpression *)left with:(NSExpression *)right'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static NSExpression ExpressionForMinusSetWith(
	NSExpression left,
	NSExpression right
)
Public Shared Function ExpressionForMinusSetWith ( _
	left As NSExpression, _
	right As NSExpression _
) As NSExpression
public:
static NSExpression^ ExpressionForMinusSetWith(
	NSExpression^ left, 
	NSExpression^ right
)
Parameters
left (NSExpression)
An expression that evaluates to an NSSet object.
right (NSExpression)
An expression that evaluates to a collection object (an instance of NSArray, NSSet, or NSDictionary).
Return Value
A new NSExpression object that represents the subtraction of right from left.
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)