PersistentDictionaryTKey, TValueContainsKey Method |
Determines if a specified key exists in the dictionary.
Namespace:
AGI.Foundation.Infrastructure.Threading
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public bool ContainsKey(
TKey key
)
Public Function ContainsKey (
key As TKey
) As Boolean
public:
bool ContainsKey(
TKey key
)
member ContainsKey :
key : 'TKey -> bool
Parameters
- key
- Type: TKey
The key to find in the dictionary.
Return Value
Type:
Boolean if the key exists in the dictionary; otherwise
.
See Also