Printing one line of text with multiple statements.

image_pdfimage_print
   


using System;

public class Welcome2 {
    public static void Main(string[] args) {
        Console.Write("Welcome to ");
        Console.WriteLine("C# Programming!");
    }
}