程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 如何用UltraEdit編譯C#源程序

如何用UltraEdit編譯C#源程序

編輯:.NET實例教程
分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#語言的語法著色。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved