ClassExplorer icon indicating copy to clipboard operation
ClassExplorer copied to clipboard

Discover the API you need with ease

Results 7 ClassExplorer issues
Sort by recently updated
recently updated
newest added

First things first: Great module, thanks for sharing. When you tab-complete a generic type, the `` ` `` characters don't get escaped, which means that the completed results cannot be...

.NET 8 brings function pointer introspection to the reflection APIs instead of just reporting as `IntPtr`

enhancement

## Summary - Ansi Escapes are copied to the clipboard when using `OutputRendering = 'PlainText'`. - Ansi Escapes are preserved in a round-trip with `PlainText` Mode ## To Reproduce ```ps1...

Currently `assignable` works like `assignableto` so for instance doing `Find-Member -ReturnType IO.FileSystemInfo` will find `FileInfo` and `DirectoryInfo` but `Find-Member -ReturnType IO.FileInfo` will not find `FileSystemInfo`. Also it might be the...

```powershell Find-Member -ParameterType { [any[,]] } ``` Finds any array, not just arrays with a rank of 2.

enhancement

For instance, you can't really do `[not[object[]]]` because that's everything. Something like `[not[arrayof[exact[object]]]]` would be helpful. Workaround: ```powershell [not[generic[Collections.Generic.IList`1, args[exact[object]]]]] ```

enhancement

The PowerShell engines type completion either completes based on the type name or by a section of namespace if there is a `.` character in the input. This should be...