Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     MyList<int> List = new MyList<int>();
     List.AddElem(10);
     List.AddElem(15);
     List.AddElem(20);
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            MyList <int> List = new MyList <int>();

            List.AddElem(10);
            List.AddElem(15);
            List.AddElem(20);
        }