Files
crtr/Assets/Cryville/Common/Collections/Generic/IPairList.cs
2023-03-26 23:25:20 +08:00

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);
}
}