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 trialAbubakar Gataev
2,226 PointsI don't know this one please help?!
I past the task cause I had the others right but I really want to kno the answer to this one. Question: The name of the second parameter in the following method is .... .
void SendMessage(string message, string recipient) {
} my answer was PrintMe because it was so in the video.
2 Answers
Connor Walker
17,985 PointsThe answer to that question is "recipient" as it is the second variable in the functions brackets (the parameters). C# functions look like this:
ReturnType FunctionName (parameters)
{
}
In the example in your post:
- void is the return type
- SendMessage is the functions name
- string message is parameter 1
- string recipient is parameter 2
Clarke Criddell
5,946 Pointsrecipient