static void Main(string[] args) { string s = "Extension methods are wicked cool!"; MyAwesomeToolbox.PrettyPrint("Static is very cool!", ConsoleColor.Cyan, 2); MyAwesomeToolbox.PrettyPrint("Static can be fun after rubbing carpet! :)", ConsoleColor.Yellow, 1); MyAwesomeToolbox.PrettyPrint(MyAwesomeToolbox.ProduceLuckyNumber().ToString(), ConsoleColor.Green, 4); Automobile auto = new Automobile(); auto.Drive(); auto.DriveElectric(); }
public static void DriveElectric(this Automobile auto) { Console.WriteLine("Electric car is driving"); }