March 2004
Intermediate to advanced
560 pages
26h 47m
English
using System;
namespace Samples
{
public class StackOverflowSample
{
public static void recurse()
{
recurse();
}
public static void Main()
{
try
{
recurse();
}
catch(StackOverflowException e)
{
Console.WriteLine("Exception: {0}", e);
}
}
}
}
Exception: System.StackOverflowException: Exception of type System.StackOverflowException was thrown.
Read now
Unlock full access