Hello, I’m working on this task:
Make the program compile (work). It should output “The hardest is naming. I can try 100 names and still not find a good one!”
Here is my code:
namespace Naming
{
public static class NamingIsHard
{
public static void Main()
{
int count = 100;
string $ naming = "naming";
string $ interpolatedString = "The hardest is {naming}. I can try {count} names and still not find a good one!";
Console.WriteLine{interpolatedString};
}
}
}
Can anyone please help me to solve it?