C#C
C#7mo ago
Chroma

✅ difference in output

What is the difference between:

c#
Console.WriteLine("Hello, World!");


and

c#
using System;
namespace Practicing
{
  class Program
  {
    static void Main(string[] args)
    {
      Console.WriteLine("Hello, World!");
    }
  }
}
Was this page helpful?