//以下是输出Dictionary中所有的值。只要循环所有的key就行了
foreach (string key in dic_userinfo.Keys){ Console.WriteLine(string.Format("key: {0} value{1}", key, dic_userinfo[key]));}