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

Audrey Steed
Audrey Steed
1,112 Points

What do I do on quiz?

So i started this test and the first question was ok but it starts giving me fill int the blanks. It says to fill in the correct answer in the blank. Than it says is the following "it the name of the namespace here below". And I don't know what to answer for yes or no.

1 Answer

Steven Parker
Steven Parker
229,744 Points

Namespaces are a way of encapsulating (grouping together) items, generally to be able to refer to them collectively or to avoid name conflicts with items in other namespaces.

This challenge is about identifying the parts of a method name. Things to keep in mind when doing this 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 for this example the method is Paint, the class is Canvas, and the namespace is Adobe.Illustrator.