IEnumerable<CustomType> in PowerShell
Posted
by svick
on Stack Overflow
See other posts from Stack Overflow
or by svick
Published on 2010-03-22T19:40:07Z
Indexed on
2010/03/22
19:41 UTC
Read the original article
Hit count: 1784
I'm trying to use Enumerable.ToList()
in PowerShell. Apparently, to do that, I have to explicitly convert the object to IEnumerable<CustomType>
, but I am unable to do that. It seems I can't correctly write IEnumerable<CustomType>
in PowerShell. Both IEnumerable<string>
and CustomType
itself work correctly (the custom type I'm trying to use is called WpApiLib.Page
), so I don't know what can I be doing wrong.
PS C:\Users\Svick> [Collections.Generic.IEnumerable``1[System.String]]
IsPublic IsSerial Name BaseType
-------- -------- ---- --------
True False IEnumerable`1
PS C:\Users\Svick> [WpApiLib.Page]
IsPublic IsSerial Name BaseType
-------- -------- ---- --------
True True Page System.Object
PS C:\Users\Svick> [Collections.Generic.IEnumerable``1[WpApiLib.Page]]
Unable to find type [Collections.Generic.IEnumerable`1[WpApiLib.Page]]: make su
re that the assembly containing this type is loaded.
At line:1 char:51
+ [Collections.Generic.IEnumerable``1[WpApiLib.Page]] <<<<
© Stack Overflow or respective owner