Stack size problem with managed code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I got stack overflow errors while using an unmanaged dll from managed c#
application. When i use editbin.exe to increase stack size of app , it works.
Is there a way to increase stack size of app (or most probably Clr) so that
app starts with a larger stack, like using the old /F switch in Visual Studio
C++ 6.0.
 
Are you getting actual Stack Overflow exceptions in your managed code or are
you getting Stack Overflow errors in your unmanaged dll?
 
well the actual error message is:
First-chance exception at 0x03616543 in app.exe : 0xc00000FD stack overflow
 
Back
Top