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.

C# | Visual Basic | Visual 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 )

- 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).

A new NSExpression object that represents the subtraction of right from left.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)