Tell us what’s happening:
I’m trying to print ‘Hello, World!’ in C# but my code isn’t working. I’m not sure if the issue is with the syntax or setup. I’ve tried looking at similar examples, but I still can’t figure it out."
Your browser information:
User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Mobile Safari/537.36
Challenge Information:
Write Your First Code Using C# - Trophy - Write Your First Code Using C#
using System;
class Program
{
static void Main()
{
Console.WriteLine(“Hello, World!”);
}
}