1
 public class PizzaIngredient
 {

     public enum Country
     {
        SouthKorea,
        United_Kingdom,
        united_States
     }
 }
Guru Stron
  • 102,774
  • 10
  • 95
  • 132
Sydney_dev
  • 1,448
  • 2
  • 17
  • 24

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,655
  • 14
  • 43
  • 71