Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Objects Loops and Final Touches Foreach Loops

jordan weitz
jordan weitz
1,431 Points

Invader invader = invaders[i];

The above code. Left side of equation is creating a variable named invader from an Invader class. That is cool I understand that. However, how can an instance of the Invader class become an array? (the right side of the equation). The invader class doesn't have an array field or anything. Any suggestions would be greatly appreciated! =)

1 Answer

Steven Parker
Steven Parker
229,732 Points

Assuming that line comes from working code, the "invaders" (plural) array must have already been created and populated with instances of the "Invader" class. This line just assigns a new variable with a reference to one of them.

If you have trouble finding where that array is created, you could make a snapshot of your workspace and post the link to it here to facilitate more specific help.