摘要: --存储数据:List<string> keyList = new List<string> { "a", "b", "c" };foreach (string key in keyList){ AppDomain.CurrentDomain.SetData(key, key + key);}--取数据foreach (string key in keyList){ object obj = AppDomain.CurrentDomain.GetData(key); Console.WriteLine(obj. 阅读全文
posted @ 2013-06-04 12:19 pnljs 阅读(145) 评论(0) 推荐(0) 编辑