Returns the set of objects from the dictionary that corresponds to the specified keys as an NSArray.
Original signature is '- (NSArray *)objectsForKeys:(NSArray *)keys notFoundMarker:(id)anObject'
Available in Mac OS X v10.0 and later.

Declaration Syntax
public virtual NSArray ObjectsForKeysNotFoundMarker(
NSArray keys,
Id anObject
)
Public Overridable Function ObjectsForKeysNotFoundMarker ( _
keys As NSArray, _
anObject As Id _
) As NSArray
public:
virtual NSArray^ ObjectsForKeysNotFoundMarker(
NSArray^ keys,
Id^ anObject
)

Parameters
- keys (NSArray)
- An NSArray containing the keys for which to return corresponding values.
- anObject (Id)
- The marker object to place in the corresponding element of the returned array if an object isn’t found in the dictionary to correspond to a given key.

Return Value
[Missing <returns> documentation for "M:Monobjc.Foundation.NSDictionary.ObjectsForKeysNotFoundMarker(Monobjc.Foundation.NSArray,Monobjc.Id)"]

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)