LaunchCodeEducation / csharp-web-dev-curriculum

Hugo version of C# Unit 2
http://education.launchcode.org/csharp-web-dev-curriculum/
1 stars 5 forks source link

Chapter 3 Loops "Check Your Understanding" incorrect loop type #60

Open matthewcreek opened 3 months ago

matthewcreek commented 3 months ago

Relevant Link

image Code utilizes a for loop but all answers correspond to a foreach loop syntax.

Suggested change:

char[] chars = {'p', 'l', 'r', 's', 't'};

foreach (<loop-statement>) {
   Console.WriteLine(i);
}