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.

Priya Narayanan
1,101 PointsAdobe.Illustrator .Canvas.Paint(); what is the name of the namespace of this method call
Adobe.Illustrator .Canvas.Paint(); what is the name of the namespace of this method call
3 Answers

Vedang Patel
7,114 PointsThings to keep in mind when identifying parts of method names are:
The general rule for method names is: namespace.class.method() Only the namespace can contain periods (.) The last two periods separate the namespace from the class and the class from the method Any other periods are part of the namespace. So the word closest to the parentheses is the method, the word to the left of it is the class, and everything left of that is the namespace. For example, if you had this:
System.IO.File.Copy(Parameters...);
The method is Copy, the class is File, and the namespace is System.IO.
So the answer is Adobe.Illustrator

Priya Narayanan
1,101 PointsAdobe is my answer .is this correct???

Vedang Patel
7,114 Pointsno its the wrong answer I'm sorry

Amit Baniya
13,505 PointsThe answer is Adobe.Illustrator