在powershell中有一种方法可以将哈希表转换为System.Version,我得到的错误是无法将“System.Collections.Hashtable”类型的“System.Collections.Hashtable”值转换为“System.Version”类型。
在我的 foreach 循环中的示例,我向 dbDictionary 添加了两个变量,一个键和一个值
$dbDictionary.Add($dbChangesfiles, $line)
然后,我想将该 dbDictionary 转换为 System.Version,以便可以针对已转换为 System.Version 的其他两个变量引用它。
$dbDictionaryAsVersion = [System.Version]$dbDictionary
任何帮助,将不胜感激