轉自:http://www.tongyi.net/article/20050201/200502014190.shtml
1: 編譯。
選取UltraEdit的菜單: 進階-〉工具配置
編譯C# Console
命令列填:
csc %n%e
工作目錄:
%p
名稱隨意。
儲存活動檔案,輸出到列表視窗,捕捉輸出 這3個都選上。 最後點擊 “插入“。
%P Path only ("C:\project\test\")
%N fileName only ("test")
%E Extension only (".c")
編譯C# Console 有表徵圖:
csc /win32icon:app.ico %n%e
編譯C# dll:
csc /t:library /out:%n.dll %n%e
編譯C# winexe:
csc /t:winexe %n%e
編譯C# winexe有表徵圖:
csc /t:winexe /win32icon:app.ico %n%e
然後,我的電腦-〉屬性-〉進階-〉環境變數-〉
Path 編輯為
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SystemRoot%\Microsoft.NET\Framework\v1.1.4322\
2: 關聯。
進階-〉配置-〉檔案關聯
我使用的 : .cst ,檔案描述:C#源檔案 ,點添加即可。以後可雙擊直接開啟.cst檔案。 就是文字檔改尾碼為.cst即可。
3: 上色。
進階-〉配置-〉文法著色 -〉文法檔案全名
我的是 : D:\UltraEdit\WORDFILE.TXT 點開啟。
找到
/L7"C#" Line Comment = // Block Comment On = /* Block Comment Off = */
Escape Char = \ String Chars = "' File Extensions = CS
在後面加上CST
/L7"C#" Line Comment = // Block Comment On = /* Block Comment Off = */
Escape Char = \ String Chars = "' File Extensions = CS CST
這樣雙擊開啟cst檔案時就會自動加上C#語言的文法著色。