0
im confused (C# question)
if i were to do Console.WriteLine("Hello World!"); why would that not work
3 Respostas
+ 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!");
}
}
}
+ 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.
+ 2
This also works.
using System;
Console.WriteLine("Hello World!");