Abount ConvertFrom-Json and pipeline Foreach

73 Views Asked by At

Why the following two behave differently?

'[{"b":1}]'|ConvertFrom-Json|%{$_}|gm
'[{"b":1}]'|ConvertFrom-Json|gm

they seems like different types. My PS version is 6.2.3

0

There are 0 best solutions below