1
0
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:
Kevin Glynn 2010-10-19 10:41:43 +02:00
parent 43c1249563
commit aeadd3744e

View File

@ -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);
}