I have a concurrent dictionary declared as global variable like
private static readonly ConcurrentDictionary<int, int> PageVersusRowCheckboxStatus = new ConcurrentDictionary<int, int>();
and Here I am adding values into it
PageVersusRowCheckboxStatus[j] = iPageIndex - 1;
Now, I need to find out the last entered value in the dictionary. How to get it?