dictionary.Add("A1",?123);
dictionary.Add("A2",?456);
KeyValuePair<string,int>?kvp=dictionary.FirstOrDefault();//?獲取第壹個
Console.WriteLine("Key={0}\tValue={1}",kvp.Key,kvp.Value);