Merge pull request #73382 from RedworkDE/net-source-gen-param

C#: Fix internal source generator on the 7.0.200 SDK
This commit is contained in:
Rémi Verschelde 2023-02-16 18:33:16 +01:00
commit 05fd229e77
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -168,7 +168,9 @@ using Godot.NativeInterop;
{
var parameter = callback.Parameters[i];
source.Append(parameter.ToDisplayString());
AppendRefKind(source, parameter.RefKind);
source.Append(' ');
source.Append(parameter.Type.FullQualifiedNameIncludeGlobal());
source.Append(' ');
source.Append(parameter.Name);