- 授权协议: 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);
}C++数据结构与程序设计
克鲁斯 / 钱丽萍 / 清华大学出版社 / 2004-1 / 59.00元
《C++数据结构与程序设计》这本精心制作的课本结合面向对象程序设计和C++强有力的特性,构建数据结构的基本思想,设计了程序和有趣的应用。在此过程中,《C++数据结构与程序设计》探讨了作为软件设计基本工具的问题求解和设计原理、数据抽象、递归和算法的比较分析。《C++数据结构与程序设计》使用真实的案例研究、可重用的软件开发和程序设计项目来增强理解。一起来看看 《C++数据结构与程序设计》 这本书的介绍吧!
