Write a program in C# for parameterized constructors and static constructors
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace prg5 { class Program { static void Main(string[] args) { myclass ob1 = new myclass(20); myclass ob2 = new myclass(25); ob1.show(); ob2.show(); } } } class myclass { int age; public myclass(int g) { age = g; } public void show() { Console.WriteLine("Age is=" + age); } static myclass() { Console.WriteLine("static constructor"); }} OUTPUT static constructor Age is=20 Age is=25