Fix caching work
This commit is contained in:
@@ -7,11 +7,11 @@ public interface ICache<TValue> :
|
||||
|
||||
void Clear();
|
||||
|
||||
bool TryGetValue(TValue key, out TValue? item);
|
||||
|
||||
int IndexOf(TValue value);
|
||||
|
||||
bool Remove(TValue value);
|
||||
|
||||
bool TryGetValue(TValue key, out TValue? value);
|
||||
}
|
||||
|
||||
public interface ICache<TKey, TValue> :
|
||||
@@ -25,8 +25,6 @@ public interface ICache<TKey, TValue> :
|
||||
|
||||
void Clear();
|
||||
|
||||
bool ContainsKey(TKey key);
|
||||
|
||||
int IndexOf(TKey key);
|
||||
|
||||
bool Remove(TKey key);
|
||||
|
||||
Reference in New Issue
Block a user