C# StackOverflowException

Warning

The stack has limited memory. It can overflow. Typically the StackOverflowException is triggered by a recursive method that creates a very deep call stack. The problem is linked to the concept of the stack memory region in general.

This C# exception article demonstrates StackOverflowException.

Example

Note

This program defines a method that causes an infinite recursion at runtime. The Recursive method calls itself at the end of each invocation. Although an optimizing compiler could turn this method into a tail recursive call, the current program does not achieve this. Therefore, each method call frame (activation record) is kept on the stack memory. After nearly 80,000 invocations, the stack memory space is exhausted and the program terminates. Usually, the StackOverflowExeception is caused by an infinite or uncontrolled recursion.

Program that generates StackOverflowException [C#]

using System;

class Program
{
    static void Recursive(int value)
    {
	// Write call number and call this method again.
	// ... The stack will overflow eventually.
	Console.WriteLine(value);
	Recursive(++value);
    }

    static void Main()
    {
	// Begin the infinite recursion.
	Recursive(0);
    }
}

Output

79845
79846
79847
79848
79849
79850
79851

Process is terminated due to StackOverflowException.

Output details. The final numbers printed by the program execution are displayed in the Output section. This shows that the runtime was able to call this trivial recursive method nearly 80,000 times before the stack memory region was out of space. The message "Process is terminated" is displayed at this point and no recovery is possible. If you wrap the initial call to Recursive in a try/catch block, you cannot catch the StackOverflowException; the program is unsalvageable.

Try Keyword Catch ExamplesProgramming tip

Tail recursion and constant space. The Recursive method body here contains a single call to the same method in its final statement. This could be rewritten as a linear loop, which would simply increment a counter variable and print its value. Such a loop could continue indefinitely because it requires constant space on the stack. The C# compiler was unable to apply this optimization, called tail recursion, in this program.

Summary

The C# programming language

We looked at the StackOverflowException in the C# language and .NET Framework. We tested a degenerate program that creates an infinite recursion to demonstrate the exception. The program causes an unrecoverable error. The stack space varies based on the host computer, but is in all cases finite and this exception is a real risk to all programs—theoretically even those that do not use recursion.

Exception Handling
.NET