Zloth
Community Contributor
I played a LOT of Railroad Tycoon 2 back in the day. I tried playing it again via GOG but wasn't having as much fun. Not real sure why. Maybe I should give it another go...
For x = 1 to 20
Do Stuff
Next
instead of...
for (x = 1; x<20; x++) {
Do Stuff
};
But under the hood, .Net Framework makes pretty much the same code to run.
I actually haven't looked at VBA in eons so I'm not sure. VB.Net is really almost exactly the same thing as C#, though. It just uses BASIC style instead of C style to do everything.How different is it from VBA? I can read & edit VBA for my Office macros, but never got as far as learning to write.
For x = 1 to 20
Do Stuff
Next
instead of...
for (x = 1; x<20; x++) {
Do Stuff
};
But under the hood, .Net Framework makes pretty much the same code to run.