C# 2010 在运行时编译 XNA 类
我想知道如何通过 C# 窗口窗体上的交互来编译和运行 XNA 类。例如,当我从 C# 窗口窗体中单击“Play”按钮时,将编译并运行 XNA 类中内置的游戏。希望我的问题足够清楚。
如有任何帮助,我们将不胜感激:)
提前致谢
I'm wondering how to compile and run a XNA class from an interaction on a C# Window Form. For example, when I click button "Play" from a C# Window Form, the game which is built in XNA classes will be compiled and run. Hope my question is clear enough.
Any helps are appreciated :)
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C# 类可以在运行时编译和运行,看来您正在寻找这一点。您可以搜索
CSharpCodeProvider
和ICodeCompiler
的使用示例来开始使用。这里是一个非常清楚的示例,说明了如何实现这一目标。
C# classes can be compiled and run on runtime, it seems you're looking for that. You can search for examples of uses of
CSharpCodeProvider
andICodeCompiler
to get you started.Here is one pretty clear example of how this is achieved.