NSMutableDictionary.TryGetValue(NSObject, NSObject) Method

Definition

Gets the value associated with the specified key.

public bool TryGetValue(Foundation.NSObject key, out Foundation.NSObject value);
public bool TryGetValue(Foundation.NSObject key, out Foundation.NSObject? value);
override this.TryGetValue : Foundation.NSObject * NSObject -> bool

Parameters

key
NSObject

The key whose value to get.

value
NSObject

When this method returns, the value associated with the specified key, if the key is found; otherwise, null.

Returns

true if the dictionary contains an element with the specified key; otherwise, false.

Applies to