這篇文章主要介紹“編譯C#代碼的應(yīng)用方法是什么”,在日常操作中,相信很多人在編譯C#代碼的應(yīng)用方法是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”編譯C#代碼的應(yīng)用方法是什么”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、白云鄂ssl等。為上千余家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的白云鄂網(wǎng)站制作公司
編譯C#代碼應(yīng)用場景:
還沒想出來會(huì)用到哪里。動(dòng)態(tài)的代碼由誰來寫?普通用戶我想有一定的困難。特別是有了像 IronPython 這樣更容易使用的動(dòng)態(tài)嵌入腳本。
1) 像 LINQPad 這樣的輔助開發(fā)工具
2) 實(shí)現(xiàn)腳本引擎?
3) 探討...
主要使用命名空間 Microsoft.CSharp 編譯C#代碼,然后使用 CodeDom 和 反射調(diào)用,我這里寫了一個(gè)測試工具,看代碼:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.CodeDom.Compiler;
using Microsoft.CSharp; // 用于編譯C#代碼
using System.Reflection; // 用于反射調(diào)用
namespace CodeDomLearn
{
public partial class Form1 : Form
{
public Form1() {
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e) {
CodeCompiler.Compile(new string[] { }, textBox1.Text, "");
listBox1.Items.Clear();
foreach (string s in CodeCompiler.ErrorMessage) {
listBox1.Items.Add(s);
}
listBox1.Items.Add(CodeCompiler.Message);
}
}
static class CodeCompiler {
static public string Message;
static public List
ErrorMessage = new List ();
public static bool Compile
(string[] references, string source, string outputfile) {// 編譯參數(shù)
CompilerParameters param = new CompilerParameters
(references, outputfile, true);param.TreatWarningsAsErrors = false;
param.GenerateExecutable = false;
param.IncludeDebugInformation = true;
// 編譯
CSharpCodeProvider provider = new CSharpCodeProvider();
CompilerResults result = provider.CompileAssemblyFromSource
(param, new string[] { source });
Message = "";
ErrorMessage.Clear();
if (!result.Errors.HasErrors) { // 反射調(diào)用
Type t = result.CompiledAssembly.GetType("MyClass");
if (t != null) {
object o = result.CompiledAssembly.CreateInstance("MyClass");
Message = (string)t.InvokeMember("GetResult", BindingFlags.Instance |
BindingFlags.InvokeMethod | BindingFlags.Public, null, o, null);}
return true;
}
foreach (CompilerError error in result.Errors) { // 列出編譯錯(cuò)誤
if (error.IsWarning) continue;
ErrorMessage.Add("Error(" + error.ErrorNumber + ") - " + error.ErrorText +
"\t\tLine:" + error.Line.ToString() + " Column:"+error.Column.ToString());}
return false;
}
}
}
作為演示,例子簡單的規(guī)定類名必須是MyClass,必須有一個(gè)方法返回 string 類型的 GetResult 方法。
到此,關(guān)于“編譯C#代碼的應(yīng)用方法是什么”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!