Returns an initialized mutable set with a given initial capacity.
Original signature is '- (id)initWithCapacity:(NSUInteger)numItems'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
public NSMutableSet( NSUInteger numItems )
Public Sub New ( _ numItems As NSUInteger _ )
public: NSMutableSet( NSUInteger numItems )

- numItems (NSUInteger)
- The initial capacity of the set.

An initialized mutable set with initial capacity to hold numItems members. The returned set might be different than the original receiver.

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