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.IO;
namespace Compiler
{
publicpartialclass Form1 : Form
{
public Form1()
{
InitializeComponent();
}
privatevoid button1_Click(object sender, EventArgs e)
{
CSharpCodeProvider cs = new CSharpCodeProvider();
CompilerParameters param = new CompilerParameters();
//Указываем путь сборки.
param.OutputAssembly = "program.dll";
//Указываем путь к исхдному коду и компилируем.//Так же можно можно вместо "code.txt" указать массив строк.
cs.CompileAssemblyFromFile(param, "code.txt");
}
}
}