在wp7上动态编译C#代码
我需要在我的 WP7 应用程序中动态编译 C# 代码。
通常我会使用 Microsoft.CSharp 和 System.CodeDom 在运行时编译代码,但它们在 wp7 上不可用:(
有什么想法吗?
I need to dynamically compile C# code in my WP7 app.
Normally i would use Microsoft.CSharp and System.CodeDom to compile the code during runtime, but they are unavailable on wp7 :(
Any ideas ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
出于安全原因,您无法在手机上编译代码。它将完全破坏市场验证过程和市场验证过程。如果可以的话。
不过有几个选择。
使用动态语言,例如 IronRuby。就像 Iron7
在 a 上编译代码远程服务器响应应用程序中定义的内容。就像在 Pocket C#
中
或者创建您自己的DSL。就像在 Touch Studio
For security reasons you can't compile code on the phone. It would completely undermine the marketplace validation process & purpose if you could.
There are a few options though.
Use a dynamic language, such as IronRuby. Just like in Iron7
Compile the code on a remote server in response to what's defined in the app. Just like in Pocket C#
Or create your own DSL. Like in Touch Studio