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

Björn Norén
Björn Norén
9,569 Points

Problem with Visual Studio!

I am having trouble to declare(?) an objects variables after instantiating it...

Errors:

  • CS1519: Invalid token ';' in class, struct, or interface member declaration

  • CS1519: Invalid token ';' in class, struct, or interface member declaration

  • CS0103: The name 'map.Width' does not exist in the current context

  • CS0103: The name 'map' does not exist in the current context

  • CS0103: The name 'Width' does not exist in the current context

Map.cs

namespace Treehouse
{
    public class Map
    {
        public int Width;
        public int Height;
    }
}

Game.cs

namespace Treehouse
{
    public class Game 
    {
        Map map = new Map();
        map.Width; // <--- all errors concerns this line <---
    }
}

1 Answer

Björn Norén
Björn Norén
9,569 Points

god damnit, I forgot the static void Main(string[] args) {} , never mind ....