Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Cosmos 开发操作系统,我想知道是否有办法从文件中编译文本,例如:helloworld.cs,然后执行该文件。提前致谢。
如果你想像helloworld.cs在 Windows 中那样编译 ac# 文件 (.cs)
helloworld.cs
namespace test { class test { static void Main(string[] args) { System.Console.WriteLine("Hello World"); } } }
你可以csc.exe用来编译文件
csc.exe
C:\Windows\Microsoft.NET\Framework\{version}\csc.exe pathToFile