public string ReturnBooleanAsYes_or_No(Boolean choice) { if (choice) { return ("Yes"); } else { return ("No"); } }