MonobjcMonobjc Documented Class Library
NSCountedSet Constructor (anArray)
NamespacesMonobjc.FoundationNSCountedSetNSCountedSet(NSArray)

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

Original signature is '- (id)initWithArray:(NSArray *)anArray'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public NSCountedSet(
	NSArray anArray
)
Public Sub New ( _
	anArray As NSArray _
)
public:
NSCountedSet(
	NSArray^ anArray
)
Parameters
anArray (NSArray)
An array of objects to add to the new set.
Return Value
An initialized counted set object with the contents of anArray. 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)