- 授权协议: Ms-PL
- 开发语言: C#
- 操作系统: Windows
- 软件首页: http://csharpcompiler.codeplex.com/
软件介绍
CSharpCompiler 是免费开源的 C# 编译器,可编译 C# 源代码。
示例
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);
}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》 这本书的介绍吧!
