Fix generic typename to be properly converted to C#

This commit is contained in:
Wojtek Figat
2023-08-24 13:02:29 +02:00
parent 5f581bf156
commit 0c206564be

View File

@@ -379,7 +379,7 @@ namespace Flax.Build.Bindings
{
typeName += '<';
foreach (var arg in typeInfo.GenericArgs)
typeName += arg.Type.Replace("::", ".");
typeName += GenerateCSharpNativeToManaged(buildData, arg, caller);
typeName += '>';
}
if (apiType != null)