poke
poke copied to clipboard
A powerful reflection module for powershell.
Pester ships with window 10 -- need to move my tests.
Get-PokeMember seems like a useful function. ``` powershell # shortcut for $o | peek | gm function Get-PokeMember { $input | peek | Get-Member } ``` I thought it can...
``` powershell Add-Type @' namespace foo5 { public class bar { private static int fooL(System.Reflection.MethodInfo mi) { return 1; } } } '@ $f = [foo5.bar] | peek $mi =...