I am displaying menu in the console based application using C#. I want that if user press enter key then it should display same menu. Application should not break. I am new to C# If anyone has idea please share it. It will be helpful to me.
Below is the code.
public static void HospitalMenu()
{            
    string answer = "";
       
    do
    {
        Console.Clear();
           
                
        Console.WriteLine("=============Hospital Management System===================");
        Console.WriteLine("1...............Add Patient Information");
        Console.WriteLine("2...............Modify Patient Information");
        Console.WriteLine("3...............Add Patient Treatment Information");
        Console.WriteLine("4...............View Patient History");
        Console.WriteLine("5...............Search Patient Info");
        Console.WriteLine("6...............Generate Lab Report");
        Console.WriteLine("7...............Generate Medical Bills");
        Console.WriteLine("8...............Exit");
        Console.WriteLine("Select option (between 1 to 8)");
        int option = Convert.ToInt32(Console.ReadLine());
            
        switch (option)
        {
            case 1:
                Patient.InsertPatient();
                break;
            case 2:
                Patient.UpdatePatient();
                break;
            case 3:
                PatientTreatment();
                break;
             case 4:
                ViewMenu();
                break;
            case 5:
                SearchMenu();
                break;
            case 6:
                LabMenu();
                break;
            case 7:
                BillMenu();
                break;
            default:
                Environment.Exit(0);                       
                break;
        }
          
        Console.WriteLine("Do you want to continue ? (Enter y if yes)");
        answer = Console.ReadLine();
            
    } while (answer == "y" || answer == "Y");
}
   
Thanks in advance.