VB.NET 中默认启用选项 Strict
每当我创建一个新的 VB.NET 程序时,我必须进入该项目的属性并将“Option strict”设置为打开。我可以这样做一次,这样每次创建新项目时都会默认使用它吗?
Whenever I created a new VB.NET program I must go into the project's properties and set 'Option strict' on. Can I do that once so it is a default for every time I create a new project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 Visual Studio 中,转到菜单工具 -> 选项 -> 项目和解决方案 -> VB默认值-> 选项严格。将其设置为“开”。
每次创建新项目时,默认情况下都会有Option Strict On。
In Visual Studio, go menu Tools -> Options -> Projects and Solutions -> VB defaults -> Option Strict. Set it to "On".
Every time you create a new project, it will have Option Strict On by default.
查看菜单工具下的Option Strict -> 选项 -> 项目和解决方案 -> VB 默认值:
Check out Option Strict under menu Tools -> Options -> Projects and Solutions -> VB Defaults:
在 Visual Studio 中,转到“工具”>“ “选项”,打开“项目和解决方案”,然后选择“VB 默认值”。
In your Visual Studio, go to Tools > Options, open Projects and Solutions, and select VB Defaults.
您可以在 Visual Studio 选项中的“项目和解决方案”和“VB 默认值”下进行设置。
You can set that in the Visual Studio options, under Projects and Solutions and VB Defaults.