C# Fix deserialization of delegates that are 0-parameter overloads

Co-authored-by: Raul Santos <raulsntos@gmail.com>
This commit is contained in:
Matt Diener 2023-06-30 10:46:42 -04:00
parent 46424488ed
commit 783facf60b
1 changed files with 7 additions and 14 deletions

View File

@ -500,10 +500,7 @@ namespace Godot
Type? returnType = hasReturn ? DeserializeType(reader) : typeof(void);
int parametersCount = reader.ReadInt32();
if (parametersCount > 0)
{
var parameterTypes = new Type[parametersCount];
var parameterTypes = parametersCount == 0 ? Type.EmptyTypes : new Type[parametersCount];
for (int i = 0; i < parametersCount; i++)
{
@ -517,10 +514,6 @@ namespace Godot
return methodInfo != null && methodInfo.ReturnType == returnType;
}
methodInfo = declaringType.GetMethod(methodName, (BindingFlags)flags);
return methodInfo != null && methodInfo.ReturnType == returnType;
}
private static Type? DeserializeType(BinaryReader reader)
{
int genericArgumentsCount = reader.ReadInt32();