根据帖子,我在 Visual Studio 2010 中制作了一个 C# 项目:
http://www.blackwasp.co.uk/RuntimeCompilation_1.aspx
我想读取一个 txt 文件并将参数发送到一个方法,然后得到结果。现在我的问题是如何在运行时编译中向方法发送参数或参数?
根据帖子,我在 Visual Studio 2010 中制作了一个 C# 项目:
http://www.blackwasp.co.uk/RuntimeCompilation_1.aspx
我想读取一个 txt 文件并将参数发送到一个方法,然后得到结果。现在我的问题是如何在运行时编译中向方法发送参数或参数?
http://www.blackwasp.co.uk/RuntimeCompilation_2.aspx有一个使用反射调用方法的示例。您要做的是Invoke
方法,例如object result = myMethod.Invoke(null, myParam);
并查看result
.