1

我想创建一个应用程序,它将从 textBox1 中取出文本,对其进行编译,并将其保存为可执行文件。我以前从未尝试过,但我真的很想让它工作。这是我在“编译器”应用程序中使用的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.CodeDom.Compiler;
using Microsoft.CSharp;
using System.Diagnostics;

namespace Compiler
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            CSharpCodeProvider codeProvider = new CSharpCodeProvider();
            ICodeCompiler icc = codeProvider.CreateCompiler();
            string Output = "out.exe";
            Button ButtonObject = (Button)sender;
            CompilerParameters parameters = new CompilerParameters();
            string[] references = { "System.dll","System.Windows.Forms.dll","System.Drawing.dll" };

            parameters.EmbeddedResources.AddRange(references);
            parameters.GenerateExecutable = true;
            parameters.OutputAssembly = Output;
            CompilerResults results = icc.CompileAssemblyFromSource(parameters, textBox1.Text);

            if (results.Errors.Count > 0)
            {
                foreach (CompilerError CompErr in results.Errors)
                {
                    MessageBox.Show(CompErr.ToString());
                }
            }
            else
            {
                //Successful Compile
                textBox1.ForeColor = Color.Blue;
                textBox1.Text = "Success!";
            }

        }
    }
}

textbox1 文本,意思是我要编译的源是:

class Program
{
    static void Main(string[] args)
    {
System.Windows.Forms.Form f = new System.Windows.Forms.Form(); 
f.ShowDialog();
    }
}

基本上,我正在尝试动态生成一个可执行文件,它只会显示一个表单。我也尝试过,而不是制作和显示一个表单来显示 System.Windows.MessageBox.Show("testing");

在这两种情况下,我都会收到以下错误:

第 5 行,错误编号:CS0234,“名称空间“系统”中不存在类型或名称空间名称“Windows”(您是否缺少程序集引用?);

第 5 行,错误编号:CS0234,“名称空间“系统”中不存在类型或名称空间名称“Windows”(您是否缺少程序集引用?);

4

1 回答 1

6

您正在添加 3 个文件(“System.dll”、“System.Windows.Forms.dll”、“System.Drawing.dll”)作为嵌入资源而不是引用。而是将它们添加到 ReferencedAssemblies。

于 2013-08-20T11:48:32.417 回答