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# Basics (Retired) Console I/O Namespaces

Hello, what is the name of the namespace in the following method call? Adobe.Illustrator.Canvas.Paint();

Hello can someone help me please. i think it should be Adobe.Illustrator.Cavas the orect answer.

1 Answer

Keenan Johnson
Keenan Johnson
13,841 Points

In this example, this is your breakdown:

Namespace: Adobe.Illustrator
Class: Canvas
Method: Paint()

Convention separates these three by periods, so the method will always be last, the class will always be directly before the method, and the namespace will always be directly before that. Think of them as cascading down. A method is a part of a class, a class is a part of a namespace, and a namespace contains classes and methods. Hope that helps!

Icke Code
Icke Code
550 Points

Thanks Keenan, nice explanation!