Method Find
Find(ref K, out V)
Check if there is an entry with a specified key and report the corresponding value if found. This can be seen as a safe form of "val = this[key]".
Declaration
bool Find(ref K key, out V val)
Parameters
Type | Name | Description |
---|---|---|
K | key | The key to look for |
V | val | On exit, the value of the entry |
Returns
Type | Description |
---|---|
System.Boolean | True if key was found |