Пример #1
0
 public void Test()
 {
     LausionGenericList<string> myList=new LausionGenericList<string>();
     bool czyDodalem = true;
     for (int i = 0; i < 20 && czyDodalem; i++)
     {
         czyDodalem = myList.Add("Numer " + i);
     }
     string[] itemy = myList.GetAllItems();
     Debug.WriteLine(itemy.Length);
     foreach (var s in itemy)
     {
         Debug.WriteLine(s);
     }
     bool czyUsunolem = true;
     for (int i = 0; i <15 && czyUsunolem; i++)
     {
         czyUsunolem = myList.Remove("Numer " + i);
     }
     string[] item = myList.GetAllItems();
     Debug.WriteLine(item.Length);
     foreach (var s in item)
     {
         Debug.WriteLine(s);
     }
 }
Пример #2
0
        public void Test()
        {
            LausionGenericList <string> myList = new LausionGenericList <string>();
            bool czyDodalem = true;

            for (int i = 0; i < 20 && czyDodalem; i++)
            {
                czyDodalem = myList.Add("Numer " + i);
            }
            string[] itemy = myList.GetAllItems();
            Debug.WriteLine(itemy.Length);
            foreach (var s in itemy)
            {
                Debug.WriteLine(s);
            }
            bool czyUsunolem = true;

            for (int i = 0; i < 15 && czyUsunolem; i++)
            {
                czyUsunolem = myList.Remove("Numer " + i);
            }
            string[] item = myList.GetAllItems();
            Debug.WriteLine(item.Length);
            foreach (var s in item)
            {
                Debug.WriteLine(s);
            }
        }