MonobjcMonobjc Documented Class Library
SetWithSet Method (set)
NamespacesMonobjc.FoundationNSSetSetWithSet(NSSet)

Creates and returns a set containing the objects from another set.

Original signature is '+ (id)setWithSet:(NSSet *)set'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static NSSet SetWithSet(
	NSSet set
)
Public Shared Function SetWithSet ( _
	set As NSSet _
) As NSSet
public:
static NSSet^ SetWithSet(
	NSSet^ set
)
Parameters
set (NSSet)
A set containing the objects to add to the new set. Each object receives a retain message as it is added to the new set.
Return Value
A new set containing the objects from set.
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)