程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#的動態編譯執行

C#的動態編譯執行

編輯:C#入門知識

在運行時編寫代碼並編譯執行。如下所示。

 

Open按鈕打開任意文本文件,並載入到TextBox。載入後可更改。

Compile按鈕進行編譯和執行。具體代碼如下。

\

 

 

\\代碼
 1 using System;
2  using System.Windows.Forms;
3  using System.IO;
4  using System.CodeDom.Compiler;
5  using Microsoft.CSharp;
6  using System.Reflection;
7
8  namespace DynamicCodeCompiler
9 {
10 public partial class Form1 : Form
11 {
12 string dynammicCode;
13
14 public Form1()
15 {
16 InitializeComponent();
17 }
18
19 //打開文件並載入代碼
20 private void button1_Click(object sender, EventArgs e)
21 {
22 OpenFileDialog ofd = new OpenFileDialog();
23 ofd.Multiselect = false;
24
25 if (ofd.ShowDialog()==DialogResult.OK)
26 {
27 FileStream fs = new FileStream(ofd.FileName,FileMode.Open);
28 StreamReader sr = new StreamReader(fs);
29 dynammicCode = sr.ReadToEnd();
30 textBox1.Text = dynammicCode;
31 }
32 }
33
34 private void button2_Click(object sender, EventArgs e)
35 {
36 if (textBox1.Text != null)
37 {
38 // 1.CSharpCodePrivoder
39 CSharpCodeProvider objCSharpCodePrivoder = new
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved