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
public virtual bool Find(ref K key, out V value)
Parameters
Type | Name | Description |
---|---|---|
K | key | The key to look for |
V | value | On exit, the value of the entry |
Returns
Type | Description |
---|---|
System.Boolean | True if key was found |