正しい方法は、オーバーフローを修正することですが....
あなたは自分自身により大きなスタックを与えることができます:-
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();
}
}
チーズをキャッチするだけです。;)