C# Elementary2 The MissionC# naming convention: Naming.NamingIsHard

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;
           int issue = "naming";
           string result = $"The hardest is {issue}. I can try {count} names and still not find a good one!";
           Console.WriteLine(result);
       }
   }
}

Can anyone please help me to solve it?

  1. на початку видалено “using System;” можливо це сталося випадково, але у цій частині коду не буде навмисних помилок. Ця частинка обов’язкова.
  2. зверніть увагу на тип змінної issue. Int відповідає за числа і відповідно для “naming” цей тип не підходить. Раджу перечитати урок C# String - Elementary C# Course | Codeasy.net :slight_smile:
2 Likes