Allow validation to be looked up by name
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
|
||||
namespace Toolkit.Foundation
|
||||
{
|
||||
public interface IReadOnlyIndexDictionary<TKey, TValue> :
|
||||
IReadOnlyDictionary<TKey, TValue>
|
||||
where TKey : notnull
|
||||
{
|
||||
KeyValuePair<TKey, TValue> this[int index] { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user