diff --git a/src/dotnet/commands/dotnet-new/CSharp_Console/Program.cs b/src/dotnet/commands/dotnet-new/CSharp_Console/Program.cs index 51233cffa..f095a9f74 100644 --- a/src/dotnet/commands/dotnet-new/CSharp_Console/Program.cs +++ b/src/dotnet/commands/dotnet-new/CSharp_Console/Program.cs @@ -1,12 +1,9 @@ using System; -namespace ConsoleApplication +class Program { - public class Program + static void Main(string[] args) { - public static void Main(string[] args) - { - Console.WriteLine("Hello World!"); - } + Console.WriteLine("Hello World!"); } }