在 Linux 中运行 Windows 程序
我使用 Visual Studio 2008 在 VB.NET 中开发了一个类似记事本的 Windows 应用程序。如果我安装 mono-develop 包,是否可以在 Linux 环境中运行该文件?
I've developed a Notepad kinda Windows application in VB.NET using Visual Studio 2008. Is it possible for me to run the file in the Linux environment if I install the mono-develop package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你使用过的所有功能都是 Mono 支持的,那么你应该可以。
使用 MOMA(Mono 迁移分析器)检查您的应用程序以确定。
与 Windows 的一个区别是您不能简单地调用可执行文件 - 您需要调用
monoexecutablename.exe
。If all the functions you have used are supported by mono, you should be able to.
Check your application with MOMA (The Mono Migration Analyzer) to be sure.
One difference from windows is that you can't simply call the executable - you need to call
mono executablename.exe
.