poke icon indicating copy to clipboard operation
poke copied to clipboard

A powerful reflection module for powershell.

Results 3 poke issues
Sort by recently updated
recently updated
newest added

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 =...