2011年9月29日
摘要: 期待已久的VS2008 SP1 和.NET FRAMEWORK 3.5 SP1都出来了 下载地址 Microsoft Visual Studio 2008 Service Pack 1 (iso) http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&FamilyID=27673c47-b3b5-4c67-bd99-84e525b5ce61 Visual Studio 2008 Team Foundation Server Service Pack 1(iso) http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&FamilyID=9e40a5b6-da41-43a2-a06d-3cee196bfe3d Microsoft .NET Framework 3.5 Service Pack 1 阅读全文
posted @ 2011-09-29 22:23 上校 阅读(195) 评论(0) 推荐(0)
摘要: Dictionary dic = new Dictionary(); foreach (DataRow r in dt.Rows) { string str = Convert.ToString(r["strLogisticsType"]); if (dic.ContainsKey(str)) { continue; } dic.Add(str,str); } 阅读全文
posted @ 2011-09-29 14:34 上校 阅读(295) 评论(0) 推荐(1)