如何创建免费的 C# 开发环境
对于个人项目,我无法在家使用 Visual Studio Professional 的工作许可证。
Visual Studio Express 似乎不如专业版那么有吸引力,除了记事本之外我还有什么选择?
For personal projects I cannot use my work-licence of Visual Studio Professional at home.
Visual Studio Express just seem less appealing than the professional edition, what are my alternatives except notepad?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
MonoDevelop 和 SharpDevelop 只是两个选项,尽管 Visual Studio Express 版本似乎也有更多功能(并且对于使用 Pro/Ultimate 版本的用户来说更熟悉)。
许多编程文本编辑器都具有 C# 语法突出显示功能,您可以使用键绑定调用编译器(您需要自行配置),但专用 IDE 会带来更好的体验。 Notepad++ 就是这样的一个编辑器。
MonoDevelop and SharpDevelop are only two options, though even the Express edition of Visual Studio seems to have more features (and is more familiar to those using the Pro/Ultimate editions).
A number of programming text editors have C# syntax highlighting and you can invoke the compiler with key bindings (that you will need to configure yourself), though a dedicated IDE would make a better experience. Notepad++ is one such editor.
记事本++
? :)更严重的是,有免费的 C# IDE,例如 SharpDevelop 但我我自己一直更喜欢 Visual Studio。
Notepad++
? :)More seriously though, there are free C# IDE's out there, such as SharpDevelop however I have always preferred Visual Studio myself.
一种开源替代方案是 SharpDevelop。
编辑:正如凯尔指出的,我也更喜欢 Visual Studio。
One open source alternative is SharpDevelop.
Edit: And as Kyle pointed out, I too prefer Visual Studio above anything else.