static void Main(string[] args) { Console.Clear(); ListBox menu = new ListBox(0, 0, "SocketTracker, made by JkFrcss", Console.BackgroundColor, ConsoleColor.Blue); menu.Source = new List <string> { "Scan ports(127.0.0.1)", "Scan whole network", "Scan specific ip", "Spam(HTTP)", "Spam(Socket)", "Changelog" }; menu.NumericPosition = true; menu.SeletionChanged += SelectionChanged; menu.Draw(); menu.Activate(); }