0

im confused (C# question)

if i were to do Console.WriteLine("Hello World!"); why would that not work

21st Jan 2025, 12:26 AM
Eli Seamans
3 Respuestas
+ 4
Eli Seamans // I'm not sure why as it works just fine using System; using System.Text; namespace Hello { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); } } }
21st Jan 2025, 5:12 AM
BroFar
BroFar - avatar
+ 3
Kindly post a link to your program. The issue must be related to the context of that code statement, as it works fine otherwise.
21st Jan 2025, 1:07 AM
Brian
Brian - avatar
+ 2
This also works. using System; Console.WriteLine("Hello World!");
21st Jan 2025, 6:08 AM
Bob_Li
Bob_Li - avatar