Il2CppInterop icon indicating copy to clipboard operation
Il2CppInterop copied to clipboard

[Generator] Delegate conversions with generic params are broken

Open slxdy opened this issue 3 months ago • 0 comments

Idk how to describe it well, so I think the following Il2CppInterop-generated piece speaks for itself. At Il2CppSystem.Comparison<>:

public static implicit operator Comparison<T>(System.Func<,> P_0)
{
    return DelegateSupport.ConvertDelegate<Comparison<T>>(P_0);
}

The parameter type does not specify the generic arguments

slxdy avatar Mar 24 '24 11:03 slxdy