using System; //using System.Collections.Generic; //using System.Linq; //using System.Text; namespace World { /// /// HellowWorld class /// class HelloWorld { /// /// main function of HelloWorld program /// /// arguments to the program static void Main(string[] args) { Console.WriteLine("Hello World"); // How to call a class library that we've built. // HelloWorldClassLibrary.HelloWorldClass.HelloWorld(); // Console.Write Console.Write("Welcome to "); Console.WriteLine("C# Programming"); // newline Console.WriteLine("Welcome\nto\nC#\nProgramming"); } } }