Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Kyle Westendorf
6,564 PointsField vs. Property
Why are we using fields vs. properties for some items in this class? For instance, why isn't _pathStep turned into a property?
1 Answer

richardking4
2,997 PointsAs I understand it: we're storing _pathStep as a field rather than a property because it doesn't need to be accessed outside of the Invader.cs class.