belongs to collection: C# Language Basic programs with examples
C# Program to Print “Hello, World!”
This program is compiled and tested on a Visual Studio 2012.
using System; namespace TechStudyCSharp { class Program { static void Main(string[] args) { Console.WriteLine("Hello World"); Console.Read(); } } }
Result:
Hello World
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
This program is compiled and tested on a Visual Studio 2012.
Result:
Hello World
need an explanation for this answer? contact us directly to get an explanation for this answer