Exemplo n.º 1
0
        static void Main(string[] args)
        {
            AList2O list = new AList2O();

            int[] z = { 5, 254, 1, 6, 4 };
            list.Init(z);

            list.ToArray();
            Console.ReadKey();
        }
Exemplo n.º 2
0
 public void SortTest(string[] array, string[] result)
 {
     lst.Init(array);
     lst.Sort();
     Assert.AreEqual(result, lst.ToArray());
     Assert.AreEqual(result.Length, lst.Size());
 }