Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt
Code Block
string [] fruit = "Apple|Apricot|Avocado|Banana|Blackberry|Blueberry|Cherry|Coconut";

for(string f in fruit) {
    runnerLog(f);
}
Info

Use this method when looping through arrays and you don't need to know the index position.