Exemple #1
0
        private static void ThreadCreationExample()
        {
            var threadCreation = new ThreadCreation();

            threadCreation.UsingThread();

            threadCreation.UsingThreadStart();

            threadCreation.UsingThreadStartWithParameters();

            threadCreation.UsingLambdaExpressions();

            Console.ReadKey();
        }