waf / CSharpRepl

A command line C# REPL with syntax highlighting – explore the language, libraries and nuget packages interactively.
https://fuqua.io/CSharpRepl/
Mozilla Public License 2.0
2.76k stars 106 forks source link

Fix navigate to source for generic types #342

Closed waf closed 5 months ago

waf commented 5 months ago

The previous logic was looking up types by name, but not including the generic parameter arity (e.g. for List<T> it was looking for List as opposed to List`1