Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var exampleToRun = ExamplesEnumeration.ParallelLinq;

            switch (exampleToRun)
            {
            case ExamplesEnumeration.Invoke:
                InvokeExamples.ShowInvoke();
                break;

            case ExamplesEnumeration.InvokeWithOptions:
                InvokeExamples.ShowInvokeWithOptions();
                break;

            case ExamplesEnumeration.For:
                ForExample.ShowFor();
                break;

            case ExamplesEnumeration.ForEach:
                ForEachExample.ShowForEach();
                break;

            case ExamplesEnumeration.ParallelLinq:
                ParallelLinqExample.ShowParallelLinq();
                break;
            }

            Console.Read();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            var s = new Pilha();
            var f = new ForExample();

            s.Empilha(1);
            s.Empilha(10);
            s.Empilha(100);
            Console.WriteLine(s.Desempilha());
            Console.WriteLine(s.Desempilha());
            Console.WriteLine(s.Desempilha());
            f.contaVezes();
        }