
michael edmondson
3,369 PointsWhat is being asked for in this challenge i pretty lost im putting in the forward slash and the quotation
using System;
class Program {
static void Main(string[] args)
{
var name = "Treehouse";
Console.WriteLine(\""Hello, \"name\"!";
}
}
1 Answer

KRIS NIKOLAISEN
Pro Student 51,961 PointsFrom my previous answer:
There is an example in this video @2:02 that shows
string name = "Jay"
Console.WriteLine($"Hello {name}!");
This is what the quiz is looking for. I don't think you need to print the quotes.