How could I make a List in PowerShell 2?
I've tried these:
[activator]::createinstance(([type]'system.collections.generic.list`1').makegenerictype([string]))
and
[activator]::createinstance(([type]'system.collections.generic.list`1').makegenerictype([string]))
and all I get is just nothing. What's going wrong?
I'm running XP SP3, if it matters