Write the program WritePatientRecords that allows a doctor’sstaff to enter data about patients and saves the data to a filecalled Patients.txt. The output should be in the following format:p#, PATIENT_NAME, BALANCE. Create a Patient class that containsfields for ID number, name, and current balance owed to thedoctor’s office.
using System;
using static System.Console;
using System.IO;
class WritePatientRecords
{
static void Main()
{
// Your code here
}
}
Expert Answer
Answer to Write the program WritePatientRecords that allows a doctor’s staff to enter data about patients and saves the data to …