分3步.
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#語言的語法著色。