Skip to content

Commit 0b2c6d8

Browse files
Allow for overriding ContainsKey
1 parent 5ec9fc4 commit 0b2c6d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/DictionaryWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public virtual void Add(TKey key, TValue value)
4040

4141
[MethodImpl(MethodImplOptions.AggressiveInlining)]
4242
/// <inheritdoc />
43-
public bool ContainsKey(TKey key)
43+
public virtual bool ContainsKey(TKey key)
4444
=> InternalSource.ContainsKey(key);
4545

4646
[MethodImpl(MethodImplOptions.AggressiveInlining)]

0 commit comments

Comments
 (0)