真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

編譯C#代碼的應(yīng)用方法是什么

這篇文章主要介紹“編譯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è)測試工具,看代碼:

  1. using System;  

  2. using System.Collections.Generic;  

  3. using System.ComponentModel;  

  4. using System.Drawing;  

  5. using System.Windows.Forms;  

  6. using System.CodeDom.Compiler;  

  7. using Microsoft.CSharp;         // 用于編譯C#代碼    

  8. using System.Reflection;        // 用于反射調(diào)用   

  9. namespace CodeDomLearn  

  10. {  

  11. public partial class Form1 : Form  

  12. {  

  13. public Form1() {  

  14. InitializeComponent();  

  15.  

  16. }  

  17.  

  18. private void button1_Click(object sender, EventArgs e) {  

  19. CodeCompiler.Compile(new string[] { }, textBox1.Text, "");  

  20. listBox1.Items.Clear();  

  21. foreach (string s in CodeCompiler.ErrorMessage) {  

  22. listBox1.Items.Add(s);  

  23. }  

  24. listBox1.Items.Add(CodeCompiler.Message);  

  25. }  

  26. }  

  27.  

  28. static class CodeCompiler {  

  29. static public string Message;  

  30. static public List ErrorMessage = new List();  

  31.  

  32. public static bool Compile
    (string[] references, string source, string outputfile) {  

  33. // 編譯參數(shù)    

  34. CompilerParameters param = new CompilerParameters
    (references, outputfile, true);  

  35. param.TreatWarningsAsErrors = false;  

  36. param.GenerateExecutable = false;  

  37. param.IncludeDebugInformation = true;  

  38.  

  39. // 編譯    

  40. CSharpCodeProvider provider = new CSharpCodeProvider();  

  41. CompilerResults result = provider.CompileAssemblyFromSource
    (param, new string[] { source });  

  42.  

  43. Message = "";  

  44. ErrorMessage.Clear();  

  45. if (!result.Errors.HasErrors) { // 反射調(diào)用    

  46. Type t = result.CompiledAssembly.GetType("MyClass");  

  47. if (t != null) {  

  48. object o = result.CompiledAssembly.CreateInstance("MyClass");  

  49. Message = (string)t.InvokeMember("GetResult", BindingFlags.Instance | 
    BindingFlags.InvokeMethod | BindingFlags.Public, null, o, null);  

  50. }  

  51. return true;  

  52. }  

  53.  

  54. foreach (CompilerError error in result.Errors) {  // 列出編譯錯(cuò)誤  

  55. if (error.IsWarning) continue;  

  56. ErrorMessage.Add("Error(" + error.ErrorNumber + ") - " + error.ErrorText + 
    "\t\tLine:" + error.Line.ToString() + "  Column:"+error.Column.ToString());  

  57. }  

  58. return false;  

  59. }  

  60.  

  61. }  

作為演示,例子簡單的規(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í)用的文章!


標(biāo)題名稱:編譯C#代碼的應(yīng)用方法是什么
文章來源:http://weahome.cn/article/jicjdd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部