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 trialNicolai Magnussen
224 PointsWhat is the name of the method Apple.IPhone.Dialer.Dial(string phoneNumber);
What is the name of the method Apple.IPhone.Dialer.Dial(string phoneNumber);
I have tried phoneNumber and string phoneNumber and (string phoneNumber) But none of that works. From the video I learn that you go from right to left. And method is the first on the right.
Example.
StackOverflow.Controllers.CommentController.Details();
CommentControllers is the string, because it's like
Namespace, Class, Method
3 Answers
Steven Parker
231,236 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.
Aaron Coursolle
18,014 PointsHint: "(string phoneNumber)" is a parameter you are passing into the method, not the name of the method itself.
Nicolai Magnussen
224 PointsThanks, Now I undestand :D