I declare the dictionary as follows:
private Dictionary<int, touchInformation> touchDictionary = new Dictionary<int, touchInformation>();
And I used the following:
touchDictionary[touchID]= touchObject;
So, touchDictionary will save the key from touchID. Now I am trying to find the minimum key using a dictionary, but I do not know how to do this. Any suggestions?
Regard, C. Porawat
source
share