1
 public class PizzaIngredient
 {

     public enum Country
     {
        SouthKorea,
        United_Kingdom,
        united_States
     }
 }
Guru Stron
  • 42,843
  • 5
  • 48
  • 70
Sydney_dev
  • 342
  • 6
  • 14

1 Answers1

0

remove the under score from the definition :

public enum Country
{
    SouthKorea,
    UnitedKingdom,
    UnitedStates
}

or if that is not possible add descriptors to the enum , example here : Can my enums have friendly names?

Shachaf.Gortler
  • 5,491
  • 13
  • 40
  • 70