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
[XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/System")]
public byte _XXX
{
get
{
....
}
set
{
....
}
}
Actual Behavior
[XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/System")]
public byte _XXX
{
get
{
/*
An exception occurred when decompiling this method (060001C5)
---> System.InsufficientExecutionStackException: Insufficient stack to continue executing the program safely. This can happen from having too many functions on the call stack or function on the stack using too much stack space.
at ICSharpCode.Decompiler.StackOverflow.Prevent()
.....
*/;
Additional Context
No response
The text was updated successfully, but these errors were encountered:
The if statement in the ICSharpCode.Decompiler project and the if statement in the debugger projects should be inverted. (They are missing a !) I can’t believe I missed this.
I’m currently away from home without a pc for a week so I will see what i can do using a mobile iOS device 😅
dnSpyEx version
6.5.0 NET 8
Describe the Bug
ICSharpCode.Decompiler.DecompilerException
How To Reproduce
Just Open a dll
Bug is not present on net4.8 Framework...
Expected Behavior
[XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/System")]
public byte _XXX
{
get
{
....
}
set
{
....
}
}
Actual Behavior
[XmlElement(Namespace = "http://schemas.datacontract.org/2004/07/System")]
public byte _XXX
{
get
{
/*
An exception occurred when decompiling this method (060001C5)
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Byte ......
---> System.InsufficientExecutionStackException: Insufficient stack to continue executing the program safely. This can happen from having too many functions on the call stack or function on the stack using too much stack space.
at ICSharpCode.Decompiler.StackOverflow.Prevent()
.....
*/;
Additional Context
No response
The text was updated successfully, but these errors were encountered: