91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

編譯C#代碼的應用方法是什么

發布時間:2021-12-02 11:59:54 來源:億速云 閱讀:128 作者:iii 欄目:編程語言

這篇文章主要介紹“編譯C#代碼的應用方法是什么”,在日常操作中,相信很多人在編譯C#代碼的應用方法是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”編譯C#代碼的應用方法是什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

編譯C#代碼應用場景:
還沒想出來會用到哪里。動態的代碼由誰來寫?普通用戶我想有一定的困難。特別是有了像 IronPython 這樣更容易使用的動態嵌入腳本。
1) 像 LINQPad 這樣的輔助開發工具
2) 實現腳本引擎?
3) 探討...

主要使用命名空間 Microsoft.CSharp 編譯C#代碼,然后使用 CodeDom 和 反射調用,我這里寫了一個測試工具,看代碼:

  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;        // 用于反射調用   

  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<string> ErrorMessage = new List<string>();  

  31.  

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

  33. // 編譯參數    

  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) { // 反射調用    

  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) {  // 列出編譯錯誤  

  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. }  

作為演示,例子簡單的規定類名必須是MyClass,必須有一個方法返回 string 類型的 GetResult 方法。

到此,關于“編譯C#代碼的應用方法是什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

治多县| 北海市| 鲁甸县| 壤塘县| 文成县| 左贡县| 华阴市| 平泉县| 威远县| 象州县| 广平县| 米易县| 湘阴县| 德清县| 甘肃省| 石柱| 昭觉县| 赤峰市| 达州市| 牡丹江市| 仁怀市| 澄江县| 延庆县| 黄浦区| 信丰县| 蕲春县| 鄂托克旗| 宁明县| 成都市| 山阳县| 九龙城区| 新竹县| 温宿县| 安康市| 甘肃省| 兴文县| 郑州市| 西平县| 澳门| 安岳县| 肥东县|