Powershell のデータ型に関する初心者向けの質問が 2 つあります。
これら 2 つのコマンドの結果が異なるのはなぜですか?
PS > $test = {"a", "b", "c"} PS > foreach ($item in $test) { $item | Out-Host } "a", "b", "c" PS > $test = "a", "b", "c" PS > foreach ($item in $test) { $item | Out-Host } a b c
1 つのコマンドで返されるデータは、リストとしてフォーマットすると次のようになります。
Changes : {Change instance 10406282 ChangeType: Edit (...) , Change instance 25906333 ChangeType: Edit (...) }
これはある種のアイテムのリストのようです。どうすれば
foreach
それらを通過できますか?