I have some VB6 code that needs to be migrated to VB.NET, and I wanted to inquire about this lines of code, and see if there is a way to implement them in .NET.
Get
statements are no longer supported so how can I replace it?
For i = 0 To ntc(j) - 1
Get 4, , sounding(i)
Get 4, , ullage(i)
Get 4, , volc(i)
Get 4, , lcgc(i)
Get 4, , tcgc(i)
Get 4, , vcgc(i)
Get 4, , tfsm(i)
Get 4, , lfsm(i)
Next i
I haven't found anything useful online and I never coded in vb6