You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not really familiar with the internals of the package (nor .Net to be honest), but would it be possible to enable calling methods without specifyin optional arguments?
I copied and modified an MWE from a previous issue:
Unfortunately, C# optional parameters are not currently supported.
Optional parameters are handled by the compiler, and this method still has two parameters at the IL level, so you need to specify both parameters.
This package uses reflection to call the target method, so it may be possible to implement optional parameters through a custom Binder. Will consider doing this if I have spare time.
I'm not really familiar with the internals of the package (nor .Net to be honest), but would it be possible to enable calling methods without specifyin optional arguments?
I copied and modified an MWE from a previous issue:
Calling from julia:
The text was updated successfully, but these errors were encountered: