VBScript 与 VB.NET,语法相同吗?
VBScript 和 VB.NET 的语法是否完全相同?
具体来说,VB.NET 的语法解析器是否适用于 VBScript?
Is the syntax for VBScript and VB.NET exactly the same?
Specifically, would a syntax parser for VB.NET work for VBScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不,vbscript 和 vb.net 的语法并不完全相同。
No, the syntax for vbscript and vb.net are not exactly the same.
不,它们不一样。
vb.net是一种即时编译的强类型面向对象语言,运行在.net框架上; vbscript 被解释。语法在许多微妙的方面有所不同,主要与作用域和 vb.net 支持真正的面向对象概念所需的关键字有关,而 vbscript 不具备这些概念。
No, they are not the same.
vb.net is a jit-compiled strongly typed object oriented language that runs on the .net framework; vbscript is interpreted. Syntax is different in many subtle ways, mostly relating to scoping and the keywords necessary for vb.net to support true object oriented concepts that vbscript just doesn't have.
不,VBScript 的语法与 .NET 之前的 Visual Basic(即 VB6)非常相似。 VB.NET 则完全不同。但即使与 VB6 相比,VBScript 仍然被淡化了。
No, the syntax for VBScript is very similar to pre-.NET Visual Basic (i.e., VB6). VB.NET is completely different. But even compared to VB6, VBScript is still watered down.