using System; using System.Collections.Generic; using System.Text; namespace TipExample { class Program { static void Main(string[] args) { //instantiate the display class //its constructor calls the DesplayIt() method Display d = new Display(); } }//end program }