.NET3.0已經Pre-release了。下面的連結可以下載運行庫:http://www.microsoft.com/downloads/details.aspx?FamilyId=8D09697E-4868-4D8D-A4CF-9B82A2AE542D&displaylang=en它的發布日期是: 2006-06-23在該頁面下面的Related Resources有SDK下載Windows SDK for .NET Framework 3.0 June
作為Rich Internet Application開發工具,Flex相較Ajax有不少的優勢,甚至連Wpf也不多讓。Flex的表現層是基於Flash,因此,不僅介面非富,而且可以做到真正的跨平台。 它的劣勢就是,Flex2需要Flash9播放器。 前次討論中,金彩同學曾說過Flash的開發介面不適合程式員。實質上,程式是一群學習欲很強的人,因此Flash的開發介面不是阻礙程式員的理由;不過畢竟Flash是為動畫設計的。Flex2
一直在使用C/C++,對於迴圈語句while、do while、for,對於for情有獨鐘,因為其簡潔、清晰、靈活。訪問數群組類型的變數,只有for寫出來的語句是最易於閱讀的,如:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->int arr[N] = {/**/};for(int i = 0; i < N; ++i) printf(
今天出了一個小問題,倒是令我有些驚訝。Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->byte[] data = {1,2,3,0,5,6,7,0};int n = Array.IndexOf(data, 0, 0); 結果,n為-1。 而如果改為:Code highlighting produced by Actipro
在使用 DynamicField / DynamicControl 時,經常在PostBack時,會出現一個例外: The DynamicControl/DynamicField needs to exist inside a data control that is bound to a data source that supports Dynamic Data. 中文為: 綁定到支援動態資料的資料來源的資料控制項內必須存在
沒想到漢語編程又有人開始網上對罵了。一方指另一方騙人,一方吹自已偉大。 今天群裡頭有人又把它翻出來了,剛好無聊,也就發明了一個漢語程式設計語言,整合到visual studio 2005的IDE中,名字就叫漢語編程++,歡迎同樣無聊的朋友試用。Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->#include "常用標頭檔"整數 主函數(
從VC2003到VC2005,一直有一個很奇怪的問題。 如下的代碼:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> short s1 = 0; short s2 = 2; s1 += s2; 在這兩個編譯器的 /w4 四級警告開啟的時候,就冒出以下的警告來:Code highlighting produced