- Notifications
You must be signed in to change notification settings - Fork768
Closed
Labels
Description
I have a method with the signature
Memory.GetActive(out int s32MemId)
Memory.GetActive(out System.IntPtr ptr)
With 2.1.0dev it was possible to call
_,out=obj.Memory.GetActive(0)
But this now returns
TypeError: No method matches given argumentsand I have to do:
_,out=obj.Memory.GetActive(System.Int32(0))
What changed and why did it change (i did not find something about this change)?
The new code ist much more verbose, is it possible to get the old behaviour back?