int threadCounter; reloop: Console.WriteLine("Number Of Threads:\n"); int readLine2 = int.Parse(Console.ReadLine());if (readLine2 >= 100) {reask: Console.WriteLine("Still want to continue? [Y]/[N]"); var ignoreWarning = Console.ReadKey(); if (ignoreWarning.Key == ConsoleKey.N) { Console.Clear(); goto reloop; } else if (ignoreWarning.Key == ConsoleKey.Y) { threadCounter = readLine2; } else { Console.Clear(); goto reask; }}else if (readLine2 <= 0) { Console.WriteLine("\nPlease enter a valid number."); Thread.Sleep(3000); Console.Clear(); goto reloop;}else { hesSure: threadCounter = readLine2;}for (int i = threadCounter; threadCounter > 0; i--) {