//Displays a message if the item Id was not successfully found. public void NotFound(String temp) { Console.WriteLine(); Console.WriteLine("There was no Id found matching {0} in the wine directory.", temp); MainProgram.Pause(); }
//Displays a message if there is a problem opening the input file. public static void FileErrorMessage() { Console.Clear(); Console.WriteLine("There was a error while reading the file."); MainProgram.Pause(); }