NSDictionary.TryGetValue(NSObject, NSObject) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.