Home » C# Programming » Namespaces

Which of the following C#.NET code snippets will correctly print "Hello C#.NET"?

Correct Answer: using System; namespace CuriousTabConsoleApplication { class MyProgram { static void Main(string[] args) { Console.WriteLine("Hello C#.NET"); } } }

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion