Initializes a predicate formed by combining given left and right expressions using a given selector.
Original signature is '- (id)initWithLeftExpression:(NSExpression *)lhs rightExpression:(NSExpression *)rhs customSelector:(SEL)selector'
Available in Mac OS X v10.4 and later.

C# | Visual Basic | Visual C++ |
public NSComparisonPredicate( NSExpression lhs, NSExpression rhs, IntPtr selector )
Public Sub New ( _ lhs As NSExpression, _ rhs As NSExpression, _ selector As IntPtr _ )
public: NSComparisonPredicate( NSExpression^ lhs, NSExpression^ rhs, IntPtr selector )

- lhs (NSExpression)
- The left hand expression.
- rhs (NSExpression)
- The right hand expression.
- selector (IntPtr)
- The selector to use. The method defined by the selector must take a single argument and return a BOOL value.

The receiver, initialized by combining the left and right expressions using selector.

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