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
In the ArgsTypeConverter, the ConvertFrom() method makes a recursive call instead of calling Convert() on the IArgsTypeConverter instance it has. There is no "out" path for the recursion so it eventually errors at with a StackOverflowException being thrown by the runtime.
The text was updated successfully, but these errors were encountered:
In the
ArgsTypeConverter
, theConvertFrom()
method makes a recursive call instead of callingConvert()
on theIArgsTypeConverter
instance it has. There is no "out" path for the recursion so it eventually errors at with aStackOverflowException
being thrown by the runtime.The text was updated successfully, but these errors were encountered: