mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
Print out types that are TypeVars
This commit is contained in:
parent
43c1249563
commit
aeadd3744e
@ -20,6 +20,9 @@ namespace cs2j
|
||||
typeName.Remove(typeName.Length - 1,1);
|
||||
typeName.Append("]");
|
||||
}
|
||||
else if (t.IsGenericParameter) {
|
||||
typeName.Append(t.Name);
|
||||
}
|
||||
else {
|
||||
typeName.Append(t.FullName);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user