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.95k stars 112 forks source link

Improve formatting of generic types defined inside REPL #305

Closed kindermannhubert closed 1 year ago

kindermannhubert commented 1 year ago

Version

last

What happened?

class Class1<T> { }
new Class1<int>()

Expected output: Class1<int>

Actual output: Submission#1.Class1<int>

This works fine for non-generic types.