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://codercto.com/soft/d/20680.html

写给Web开发人员看的HTML5教程

写给Web开发人员看的HTML5教程

2012-3 / 45.00元

《写给Web开发人员看的HTML5教程》通过结合大量实际案例和源代码对HTML5的重要特性进行了详细讲解,内容全面丰富,易于理解。全书共分为12章,从HTML5的历史故事讲起,涉及了文档结构和语义、智能表单、视频与音频、画布、SVG与MathML、地理定位、Web存储与离线Web应用程序、WebSockets套接字、WebWorker多线程、微数据以及以拖曳为代表的一些全局属性,涵盖了HTML5所......一起来看看 《写给Web开发人员看的HTML5教程》 这本书的介绍吧!

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具