Console.WriteLine("PARAMETRISED CONSTRUCTOR IS CALLED\n");
Console.WriteLine("COPY CONSTRUCTOR CALLED \n");
Console.WriteLine("the value of x= "+x+" value of y= "+y);
Console.WriteLine("STATIC CONSTRUCTOR IS CALLED FIRS BUDDY\n");
public static void Main()
{ Program p=new Program();
Program p1=new Program(10,20);
Program p2=new Program(p1);