using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace assn4_2 { public interface Iclown { void Honk(); } class IclownInt : Iclown { public class TallGuyClown { void Honk() { MessageBox.Show("HONK HONK HONK HONK"); } } static void Main(string[] args) { IclownInt iImp = new IclownInt(); iImp.Honk(); } public void Honk() { } } }