标签: c#
我在hello.csc保存了一个简单的“hello world”程序。
hello.csc
我在命令提示符中使用此命令编译了程序:
csc hello.csc
我需要再次在命令提示符中编译它,它会通过保持相同的文件名将其编译为另一个名称。
例如:csc hello.csc给了我hello.exe,我需要获得anotherhello.exe个文件。没有重命名hello.csc文件。
hello.exe
anotherhello.exe
答案 0 :(得分:1)
根据MSDN documentation:
csc /out:anotherhello.exe hello.cs