Bookcold

导航

2010年1月21日

VS2008 SP1制作安装程序离线安装.Net Framework3.5

摘要: 這兩天都在弄一個 Windows Setup 專案,希望弄得盡善盡美,直到剛剛終於大功告成,但當我想將 .Net Framework 3.5 SP1 的安裝檔也加入到我的 Setup 專案時(如下圖),卻發現專案無法編譯。 錯誤訊息如下: The install location for prerequisites has not been set to ‘component vendor’s... 阅读全文

posted @ 2010-01-21 17:49 bookcold 阅读(300) 评论(0) 推荐(0)

Lambda表达式对List的处理

摘要: Lambda表达式使得List的过滤和排序更加简洁! 定义一个Employee类: 1: public class Employee 2: { 3: public string FirstName {set; get;} 4: public string LastName {set; get;} 5: public decimal Salary {set; get;} 6: public b... 阅读全文

posted @ 2010-01-21 00:11 bookcold 阅读(234) 评论(0) 推荐(0)