CSharp examples for Language Basics:Console
Text displaying in the console window
using System;/*from w ww. j a v a2 s . com*/ class Welcome1 { static void Main() { Console.WriteLine("Welcome to C# Programming!"); } }