tidy
This commit is contained in:
@@ -14,10 +14,10 @@ public interface ICache<TKey, TValue> :
|
||||
IEnumerable<KeyValuePair<TKey, TValue>>
|
||||
where TKey :
|
||||
notnull
|
||||
where TValue :
|
||||
where TValue :
|
||||
notnull
|
||||
{
|
||||
void Add(TKey key,
|
||||
void Add(TKey key,
|
||||
TValue value);
|
||||
|
||||
void Clear();
|
||||
@@ -27,4 +27,4 @@ public interface ICache<TKey, TValue> :
|
||||
bool Remove(TKey key);
|
||||
|
||||
bool TryGetValue(TKey key, out TValue? value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user