最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
C#动态编译并执行字符串样例
时间:2022-06-25 07:49:52 编辑:袖梨 来源:一聚教程网
本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下
代码如下 | 复制代码 |
usingSystem; usingMicrosoft.CSharp; usingSystem.CodeDom.Compiler;
classProgram { publicstaticvoidMain() { // The C# code to execute stringcode ="using System; "+ "using System.IO; "+ "public class MyClass{ "+ " public static void PrintConsole(string message){ "+ " Console.WriteLine(message); "+ " } "+ "} ";
// Compiler and CompilerParameters CSharpCodeProvider codeProvider =newCSharpCodeProvider(); CompilerParameters compParameters =newCompilerParameters();
// Compile the code CompilerResults res = codeProvider.CompileAssemblyFromSource(compParameters, code);
// Create a new instance of the class 'MyClass' // 有命名空间的,需要命名空间.类名 objectmyClass = res.CompiledAssembly.CreateInstance("MyClass");
// Call the method 'PrintConsole' with the parameter 'Hello World' // "Hello World" will be written in console myClass.GetType().GetMethod("PrintConsole").Invoke(myClass,newobject[] {"Hello World"});
Console.Read(); } } |
相关文章
- 原神武库巨鸭的坠落成就怎么完成 隐藏成就解锁攻略 09-15
- 超级机器人大战Y天之魔神地之魔王怎么过 双BOSS关卡攻略 09-15
- 原神怎么解锁成就蕴光之茧 蕴光之茧隐藏成就解锁攻略 09-15
- 无主之地4怎么刷橙装 无限刷橙装方法 09-15
- 超级机器人大战Y雪与冰的生日怎么过 特殊剧情关卡攻略 09-15
- 空洞骑士丝之歌德鲁伊之眼怎么获取 德鲁伊之眼获取方式介绍 09-15