Initializes a newly allocated mutable dictionary, allocating enough memory to hold numItems entries.
Original signature is '- (id)initWithCapacity:(NSUInteger)numItems'
Available in Mac OS X v10.0 and later.

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

- numItems (NSUInteger)
- The initial capacity of the initialized dictionary.

An initialized mutable dictionary, which 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)