Exemplo n.º 1
0
        static void Main(string[] args)
        {
            List <int> array = new List <int>()
            {
                -22, 2, 34, -2, 0, 9, -5, 14, -55, 74, 13
            };

            Console.Write("Not sorrted array \n");
            foreach (var item in array)
            {
                Console.Write(item + " ");
            }
            FSharpList <int> arrayFunc = ListModule.OfSeq(array);

            array = new List <int>(ListModule.ToSeq(Sort.qsort(arrayFunc)));
            Console.WriteLine();
            Console.Write("Sorted array \n");
            foreach (var item in array)
            {
                Console.Write(item + " ");
            }
        }
Exemplo n.º 2
0
 /// <summary>
 /// Returns the current list of plugins.
 /// </summary>
 /// <returns></returns>
 public IEnumerable <P> GetPlugins()
 {
     return(ListModule.ToSeq <P> (plugins));
 }