Csharp/C Sharp by API/System/StackOverflowException
Версия от 15:31, 26 мая 2010; (обсуждение)
StackOverflowException.Message
using System;
class MainClass
{
public static void Main()
{
try
{
Recursive();
}
catch(StackOverflowException)
{
Console.WriteLine("The CLR is out of stack space.");
}
}
public static void Recursive()
{
Recursive();
}
}