MonobjcMonobjc Documented Class Library
NSCountedSet Constructor (aSet)
NamespacesMonobjc.FoundationNSCountedSetNSCountedSet(NSSet)

Returns a counted set object initialized with the contents of a given set.

Original signature is '- (id)initWithSet:(NSSet *)aSet'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public NSCountedSet(
	NSSet aSet
)
Public Sub New ( _
	aSet As NSSet _
)
public:
NSCountedSet(
	NSSet^ aSet
)
Parameters
aSet (NSSet)
An set of objects to add to the new set.
Return Value
An initialized counted set object with the contents of aSet. The returned object might be different than the original receiver.
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)