MonobjcMonobjc Documented Class Library
IntersectsSet Method (otherSet)
NamespacesMonobjc.FoundationNSSetIntersectsSet(NSSet)

Returns a Boolean value that indicates whether at least one object in the receiving set is also present in another given set.

Original signature is '- (BOOL)intersectsSet:(NSSet *)otherSet'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool IntersectsSet(
	NSSet otherSet
)
Public Overridable Function IntersectsSet ( _
	otherSet As NSSet _
) As Boolean
public:
virtual bool IntersectsSet(
	NSSet^ otherSet
)
Parameters
otherSet (NSSet)
The set with which to compare the receiving set.
Return Value
YES if at least one object in the receiving set is also present in otherSet, otherwise NO.
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)