9 lines
254 B
C#
9 lines
254 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Cryville.Common.Collections.Generic {
|
|
public interface IPairList<TKey, TValue> : IList<KeyValuePair<TKey, TValue>> {
|
|
void Add(TKey key, TValue value);
|
|
void Insert(int index, TKey key, TValue value);
|
|
}
|
|
}
|