NSDictionary.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);
abstract member TryGetValue : Foundation.NSObject * NSObject -> bool
override this.TryGetValue : Foundation.NSObject * NSObject -> bool

Parameters

key
NSObject

The key of the value to get.

value
NSObject

When this method returns, contains 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