How to get minimum value?
ArrayList arrKey = new ArrayList();
double v;
double min;
foreach (string subKey in sortList4.Keys)
{
foreach(string mee in arrKey)
{
sortList5.Add(mee,1);
if(sortList3.ContainsKey(mee))
{
sortList3.TryGetValue(mee, out v);
if(v>min)
{
//what should do at here?
}
}}}