© 2026 Hedgehog Software, LLC
abstract class Formatter<T> { } class StringFormatter : Formatter<string> { }
Type type = typeof(StringFormatter); string typeName = ??? // should be "string"