Files
Toolkit2/Toolkit.Foundation/IReadOnlyIndexDictionary.cs
T
2024-09-27 19:55:45 +01:00

10 lines
242 B
C#

namespace Toolkit.Foundation
{
public interface IReadOnlyIndexDictionary<TKey, TValue> :
IReadOnlyDictionary<TKey, TValue>
where TKey : notnull
{
KeyValuePair<TKey, TValue> this[int index] { get; }
}
}