使用 CodeDom 以编程方式编译 C# windpws 形式的 C 代码

本文关键字:代码 windpws CodeDom 编程 方式 编译 使用 | 更新日期: 2023-09-27 18:35:47

我正在制作一个 C 编译器,我必须知道我是否可以使用 CodeDom 在 c# 中编译 C 代码,目前我正在按照在 c# 窗口形式中编译 C# 代码的代码工作?

有没有简单的方法来编译C语言的代码?

using System.CodeDom.Compiler;
using System.Diagnostics;
using Microsoft.CSharp;
private void button1_Click(object sender, System.EventArgs e)
{
   CSharpCodeProvider codeProvider = new CSharpCodeProvider();
   ICodeCompiler icc = codeProvider.CreateCompiler();
   string Output = "Out.exe";
   Button ButtonObject = (Button)sender;
   textBox2.Text = "";
   System.CodeDom.Compiler.CompilerParameters parameters = new 
   CompilerParameters();
   //Make sure we generate an EXE, not a DLL
   parameters.GenerateExecutable = true;
   parameters.OutputAssembly = Output;
   CompilerResults results = icc.CompileAssemblyFromSource(parameters, textBox1.Text);
   if (results.Errors.Count > 0)
   {
       textBox2.ForeColor = Color.Red;
       foreach (CompilerError CompErr in results.Errors)
       {
           textBox2.Text = textBox2.Text +
                       "Line number " + CompErr.Line +
                       ", Error Number: " + CompErr.ErrorNumber +
                       ", '" + CompErr.ErrorText + ";" +
                       Environment.NewLine + Environment.NewLine;
       }
   }
   else
   {
       //Successful Compile
       textBox2.ForeColor = Color.Blue;
       textBox2.Text = "Success!";
       //If we clicked run then launch our EXE
       if (ButtonObject.Text == "Run") Process.Start(Output);
   }
}

使用 CodeDom 以编程方式编译 C# windpws 形式的 C 代码

你没有做编译器。您正在创建编译器的接口。不,您不能为此使用CodeDom。为什么不直接使用C编译器呢?您可以为此目的使用大量内容。捕获STDOUT - 编译器输出的格式有一般准则,解析它们应该是一项相当简单的任务。

您也可以尝试嵌入 C 解释器。现在这可能很有趣。更有趣的是:编写自己的C解释器(比编译器更容易实现)。

我想你正在关注 - 如何使用 C# 编译器以编程方式编译代码。

在为您的工作使用任意代码之前,请仔细检查它是否适合您的要求。 您正在使用的是 .NET 框架内部编译帮助程序类。 检查该文章的以下行。

.NET Framework 公开了允许您以编程方式进行的类 访问 C# 语言编译器。如果您愿意,这可能很有用 编写您自己的代码编译实用程序。

和要求

  • 视觉工作室
  • Visual C# 语言编译器

那么如何使用这些.NET库类编译c program

您可以使用 c 编译器 exe 并使用该编译器进行编译 控制台应用程序中的文件或使用 .NET 中的 Process 类。

您可以从命令行编译 C,只需从 C# 使用相同的该redirectstandardoutput将允许您获取将显示的输出。

Process proc = new Process();
proc.StartInfo.FileName = "compiler name";
proc.StartInfo.RedirectStandardOutput = true;
proc.Start();
string output = proc.StandardOutput.ReadToEnd();

参考