public
static Hashtable hashtable = new Hashtable();

hashtable.Add("a","aaaaaaaa");
///......

foreach(DictionaryEntry h in hashtable)
{
Console.WriteLine(h.Key.ToString() + h.Value.ToString());
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-21
  • 2021-06-08
  • 2021-07-04
  • 2021-10-12
  • 2021-10-31
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-25
  • 2022-12-23
  • 2021-07-10
  • 2022-12-23
相关资源
相似解决方案