CSharpCompiler

码农软件 · 软件分类 · 编译器 · 2019-12-08 08:59:56

软件介绍

CSharpCompiler 是免费开源的 C# 编译器,可编译 C# 源代码。

Usage

示例

CSharpCompiler compiler = new CSharpCompiler (); 
compiler.SourceCode = richTextBox1.Text;
compiler.Output = CSharpCompiler.OutputType.EXE; 
compiler.Path = "C:\\Users\\Danny\\Desktop"; 
compiler.NameOfAssembly = "Hello World!"; 
compiler.CompileCode();if (compiler.SuccessfullCompilation == false ) 
{ 
if (compiler.CompilerErrors != null ) 
listBox1.Items.AddRange(compiler.CompilerErrors); 
if (compiler.CompilerWarnings != null ) 
listBox1.Items.AddRange(compiler.CompilerWarnings);

}


本文地址:https://www.codercto.com/soft/d/20680.html

Ruby Cookbook

Ruby Cookbook

Lucas Carlson、Leonard Richardson / O'Reilly Media / 2006-7-29 / USD 49.99

Do you want to push Ruby to its limits? The "Ruby Cookbook" is the most comprehensive problem-solving guide to today's hottest programming language. It gives you hundreds of solutions to real-world pr......一起来看看 《Ruby Cookbook》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码