How to write equivilent code in C#

  • Thread starter Thread starter dm_dal
  • Start date Start date
D

dm_dal

How would you write this in C#

for i = MIN_VAL to MAX_VAL step STEP_VAL

next

{where MIN_VAL = 100, MAX_VAL = 10000, STEP_VAL = 100}


dmy
 
If you just want to know about the basics, better buy a book.
There is more intersting stuff in C# than loops.
C# Language, Pocket Reference, by O'Reilly ISBN 0-596-00429-X 118 pages.
 
Back
Top