What is the difference between VB and VBScript

后端 未结 6 2147
自闭症患者
自闭症患者 2020-12-15 16:18

What is the difference between VB and VBScript?

6条回答
  •  独厮守ぢ
    2020-12-15 16:48

    VBScript is a "lightweight" subset of Visual Basic with limited syntax that is used for scripting purposes (like routine task automation) rather than application development.

    While Visual Basic code is compiled into binary executables, VBScript code is interpreted and runs within a host environment (e.g. Windows Script Host or Internet Explorer).

提交回复
热议问题