public static void UnloadFile() { LoadedFiles(); CFormat.JumpLine(); CFormat.WriteLine("Please enter the number ID of the file you want to unload.", ConsoleColor.Gray); int id = CInput.UserPickInt(CommandManager.LoadedFileIDs.Count - 1); if (id == -1) { return; } CommandManager.UnloadFile(id); }