public class Country
    {
        public static List<Country> CountryList = new List<Country> { 
            new Country{Name = "US"},
            new Country{Name = "Canada"},
            new Country{Name = "Mexico"}
        };

        public string Name { get; set; }
    }

 

相关文章:

  • 2021-06-09
  • 2022-12-23
  • 2021-09-15
  • 2021-06-13
  • 2021-09-19
  • 2022-12-23
猜你喜欢
  • 2021-12-17
  • 2022-12-23
  • 2021-07-31
  • 2022-01-18
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案