CSharp examples for Language Basics:Console
Displaying one line of text with multiple statements.
using System;//from ww w .j a v a 2s .co m class Welcome2 { static void Main() { Console.Write("Welcome to "); Console.WriteLine("C# Programming!"); } }