public enum Country
    {
        China = 1,
        USA = 2,
        Japan = 3,
        Europe = 4,
        Russia = 5
    }

Array arry_EnumValues = Enum.GetValues(typeof(Country));
string[] array_EnumNames = Enum.GetNames(typeof(Country));

 (Country)Enum.Parse(typeof(Country), "1");
 Enum.ToObject(typeof(Country), 1);
 Enum.IsDefined(typeof(Country), 0);
 Enum.Format(typeof(Country), 1, "D");

相关文章:

  • 2021-09-12
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-15
  • 2022-12-23
  • 2022-12-23
  • 2021-07-25
  • 2021-07-25
  • 2021-10-11
  • 2022-01-02
相关资源
相似解决方案