我想做[string]::Join(", ", $HashTable.Keys);
,但是返回System.Collections.Hashtable+KeyCollection...
而不是枚举值。
我需要为此做一个foreach循环吗?
最佳答案
您可以简单地执行以下操作:
$HashTable.Keys -join ','
关于arrays - 将哈希表的键转换为字符串列表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14054643/