I'm implementing Bart de Smet's solution for adding extension methods to Powershell here:
http://bartdesmet.net/blogs/bart/archive/2007/09/06/extension-methods-in-windows-powershell.aspx
It works great! Almost! He's filtering out generics, but that was back in the dark ages (2007), and so I'm trying to figure out if it's possible today with Powershell 3.0. Here's a simple example of what I'm trying to do:
$ls = new-object collections.generic.list[string]
'generic'
update-typedata -force -typename collections.generic.list`1 `
-membertype scriptmethod -membername test -value {'test!'}
$ls.test() # fail
'string'
update-typedata -force -typename collections.generic.list[string] `
-membertype scriptmethod -membername test -value {'test!'}
$ls.test() # works!
This outputs:
generic
Method invocation failed because [System.Collections.Generic.List`1[[System.String, mscorlib,
Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]] doesn't contain a method
named 'test'.
At C:\Temp\blah5.ps1:12 char:1
+ $ls.test()
+ ~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : MethodNotFound
string
test!
Now, Powershell is able to work with generic type definitions. It just doesn't seem to have it integrated with the typedata system...
Or am I doing it wrong? Is there any way you can think of to make this work?