I declare dictionary as following:
private Dictionary<int, touchInformation> touchDictionary = new Dictionary<int, touchInformation>();
And I used as following:
touchDictionary[touchID]
= touchObject;
So, the touchDictionary will keep the key from touchID. Now, I try to find the minimum key using dictionary but I don't know how to do. Have any suggestion?
Regard, C.Porawat