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 Object-Oriented Programming Fields

Delaine Teddy R Ndau
Delaine Teddy R Ndau
3,437 Points

c# objects

hie im failing to compile my program dnt nor wats wrong cn u help me out

Steven Parker
Steven Parker
229,785 Points

Please show your code here so we can take a look.
If possible, make a snapshot of your workspace and post the link to it here.

1 Answer

Steven Parker
Steven Parker
229,785 Points

With the snapshot, it's clear that it's just a spelling issue.

In "Game.cs" the namespace is spelled "TreehouseDefense" (with an "s"), but in all the other modules it is spelled "TreehouseDefence" (with a "c"). The choice of spelling doesn't matter, but all modules must use the same one.

Always check the compiler error messages, the one saying "Are you missing `TreehouseDefence' using directive?" was the clue that helped me spot that.