I need to access last-inserted Key inside the Dictionary, I do not know the name of it.
int LastCount = mydict[mydict.keys[mydict.keys.Count]];
It does not work because Dictionary.Keys
does not implement indexer.
if there is any way, essentially a Dictionary that implements an []-indexer on the Keys?