Creates and returns a dictionary containing the keys and values from another given dictionary.
Original signature is '+ (id)dictionaryWithDictionary:(NSDictionary *)otherDictionary'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
public static NSMutableDictionary DictionaryWithDictionary( NSDictionary otherDictionary )
Public Shared Function DictionaryWithDictionary ( _ otherDictionary As NSDictionary _ ) As NSMutableDictionary
public: static NSMutableDictionary^ DictionaryWithDictionary( NSDictionary^ otherDictionary )

- otherDictionary (NSDictionary)
- A dictionary containing the keys and values with which to initialize the new dictionary.

A new dictionary containing the keys and values found in otherDictionary.

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