最新下载
热门教程
- 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(); } } |
相关文章
- PS怎么设计抽象错乱的人物效果? 07-12
- 剑星阿妮斯服装怎么获取 阿妮斯服装获取方式一览 07-12
- 网站优化如何提高用户的信任度? 07-12
- 比特币Coinbase溢价回升,但强度仍低于6月峰值——这对BTC意味着什么? 07-12
- 无畏契约源能行动霓虹实战 霓虹实战技巧详解 07-12
- 幻兽帕鲁流沙蛇去哪捕捉 帕鲁流沙蛇抓取方法介绍 07-12