static void Main(string[] args) { Console.WriteLine("Hello World!"); MyGenericClss <int> mgc = new MyGenericClss <int>(10); mgc.genericMethod(100); GenericClass gc = new GenericClass(); gc.Show("sameena"); gc.Show(472); gc.Show('S'); }
public static void Main(string[] args) { MyGenericClss <int> mgc = new MyGenericClss <int>(10); mgc.genericMethod(100); }