Closed waf closed 8 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
List<T>
List
List`1
The previous logic was looking up types by name, but not including the generic parameter arity (e.g. for
List<T>
it was looking forList
as opposed toList`1