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 Strings Escape Sequences

MERSEDES HENDERSON
MERSEDES HENDERSON
1,234 Points

Completely floored on this one as well.

Program.cs
using System;

class Program
{

    // YOUR CODE HERE: Define a Quote method!
static string Quote(string firstParam)
{
    Console.WriteLine(Quote( "" + firstParam + "");
    return firstParam;
}
    static void Main(string[] args)
    {
        // Quote by Maya Angelou.
        Console.WriteLine(Quote("When you learn, teach. When you get, give."));
        // Quote by Benjamin Franklin.
        Console.WriteLine(Quote("No gains without pains"));
    }

}

2 Answers

The problem is that you're not actually assigning the value that you're writing to the console to the variable. You don't have to do the WriteLine (and in fact shouldn't) in your function, as that is being done in the program. You just want to assign the value in your function, and then return that value so that you can use it later for whatever purpose you want. In this case, the program is using the Console.WriteLine()method to print it to the screen, but it could be used for other things as well. Also note that you will need to change your quotes to be escaped. Try changing your function to this:

static string Quote(string firstParam)
{
    firstParam = "\"" + firstParam + "\"";
    return firstParam;
}

or, better yet, just return the value like this:

static string Quote(string firstParam)
{
    return "\"" + firstParam + "\"";
}