public static string[] GetCategories()
    {
        Dictionary<string, int> itemMap = new Dictionary<string, int>(); 
        int count = itemMap.Count;
        string[] keys = new string[count];
        itemMap.Keys.CopyTo( keys, 0 );
        return keys;
    }

 

相关文章:

  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2021-05-15
  • 2022-12-23
  • 2021-11-12
  • 2022-03-05
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-20
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案