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#

jordansangalang
jordansangalang
5,042 Points

Why is a variable necessary to instantiate a new object?

using System;

namespace TreehouseDefense { class Game { public static void Main() { Tower tower = new Tower(); } } }

jordansangalang
jordansangalang
5,042 Points
using System;

namespace TreehouseDefense
{
    class Game
    {
        public static void Main()
        {
            Tower tower = new Tower();
        }
    }
}

1 Answer

How would you reference the new object and differentiate with other objects without one?

jordansangalang
jordansangalang
5,042 Points

That's a very good point. I like how you answered my question with a question to make me think. This is my first time diving into OOP, so the fundamentals still aren't basic for me yet. Thanks for the response.