Returns a dictionary containing the property values identified by each of the keys in a given array.
Original signature is '- (NSDictionary *)dictionaryWithValuesForKeys:(NSArray *)keys'
Available in Mac OS X v10.3 and later.

C# | Visual Basic | Visual C++ |
public virtual NSDictionary DictionaryWithValuesForKeys( NSArray keys )
Public Overridable Function DictionaryWithValuesForKeys ( _ keys As NSArray _ ) As NSDictionary
public: virtual NSDictionary^ DictionaryWithValuesForKeys( NSArray^ keys )

- keys (NSArray)
- An array containing NSString objects that identify properties of the receiver.

A dictionary containing as keys the property names in keys, with corresponding values being the corresponding property values.

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