using System; namespace ArrayApplication { class MyArray { public MyArray(){ Console.WriteLine("Construtor Invoke"); } static void Main(string[] args) { MyArray obj=new MyArray(); } } }
Post a Comment