C# - Programming Language
This course covers the basics of programming in C#. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

For Loops

Lesson 20
Author : 🦒
Last Updated : November, 2017


Video Code

Copyfor(int i = 0; i < 5; i++){
     Console.WriteLine(i);
}

int[] luckyNums = {4, 8, 15, 16, 23, 42};
foreach(int luckyNum in luckyNums){
     Console.WriteLine(luckyNum);
}