예제 #1
0
        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');
        }
예제 #2
0
        public static void Main(string[] args)
        {
            MyGenericClss <int> mgc = new MyGenericClss <int>(10);

            mgc.genericMethod(100);
        }