What does a hash do to a variable in VB?

后端 未结 2 2014
野性不改
野性不改 2021-01-24 05:21

I have to refactor a VB6 program to C# and am stuck at understanding the following lines:

Set myFileSystemObject = New FileSystemObject
Set myTextStream = myFile         


        
相关标签:
2条回答
  • 2021-01-24 05:36
    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.

    0 讨论(0)
  • 2021-01-24 05:52

    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
    
    0 讨论(0)
提交回复
热议问题