正しい方法はオーバーフローを修正することですが、...
より大きなスタックを自分に与えることができます:-
using System.Threading;
Thread T = new Thread(threadDelegate, stackSizeInBytes);
T.Start();
System.Diagnostics.StackTrace FrameCountプロパティを使用して、使用したフレームをカウントし、フレーム制限に達したときに独自の例外をスローできます。
または、残りのスタックのサイズを計算し、それがしきい値を下回ったときに独自の例外をスローすることができます:-
class Program
{
static int n;
static int topOfStack;
const int stackSize = 1000000; // Default?
// The func is 76 bytes, but we need space to unwind the exception.
const int spaceRequired = 18*1024;
unsafe static void Main(string[] args)
{
int var;
topOfStack = (int)&var;
n=0;
recurse();
}
unsafe static void recurse()
{
int remaining;
remaining = stackSize - (topOfStack - (int)&remaining);
if (remaining < spaceRequired)
throw new Exception("Cheese");
n++;
recurse();
}
}
チーズをとってください。;)