Given this:
$x = new-object psobject
$x | add-member noteproperty test 'xtest'
$x.test
$x | add-member noteproperty test2 'xtest2'
$x.test2
The output is what I'd expect:
xtest
xtest2
But given this:
$y = @{}
$y | add-member noteproperty test 'ytest'
$y.test
$y | add-member noteproperty test2 'ytest2'
$y.test2
I simply get:
ytest2
I'm confused. And if I do this:
$y = @{}
$y | add-member noteproperty test 'ytest'
$y | add-member noteproperty test2 'ytest2'
$y.test
$y.test2
Then there is no output at all. Running through get-members confirms that the methods are not actually being added.
What's going on here? This has to be something dumb on my end, but I can't see it.