They do this in C# can't we do it in VB??

  • Thread starter Thread starter **Developer**
  • Start date Start date
Herfried K. Wagner said:
Could you describe a scenario where the code above would
semantically make sense?


This is not the answer to my question. ;-) At the same places where it makes
sense with classes.


Armin
 
This is not the answer to my question. ;-) At the same places where it
makes sense with classes.

In the dark days, you could do this

10 DIM I(17)
20 FOR I = 1 TO 17
30 READ I(I)
40 NEXT I
10000 DATA 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1026, 1027, 1028

.... but not these days!
 
Homer J Simpson said:
In the dark days, you could do this

10 DIM I(17)
20 FOR I = 1 TO 17
30 READ I(I)
40 NEXT I
10000 DATA 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1026,
1027, 1028

... but not these days!


Still possible on my CPC emulator. ;-)


Armin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top