public IsoAssocList() { _list = new IsoList <T>(); _dict = new Dictionary <T, int>(); }
public IsoAssocList(int capacity) { _list = new IsoList <T>(capacity); _dict = new Dictionary <T, int>(capacity); }