What does a hash do to a variable in VB?

五迷三道 提交于 2019-12-02 04:54:45

Print #iFileNumber, myTextStream.ReadAll prints the string returned by ReadAll into the file opened by number iFileNumber (and because there is no semicolon after the statement, it also adds vbNewLine in the end.)

The # (for "number") is there since the old times. VB6 just supports it. It does nothing execution wise. It used to assist readability and make the language more natural-like. Speak out loud:

Open "1.txt" For Input As 1

vs.

Open "1.txt" For Input As #1
Print #iFileNumber, myTextStream.ReadAll

While trying to understand this myself, I came across this site that has a section on printing to a printer. They say #some_integer indicates a channel number:

A channel number is any integer value between 0 and 999, preceded by a pound sign (#); it indi- cates a specific channel to a device.

A channel is a connection between your program and an input or output device, such as a printer or a file.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!