How deep can a recursive call go before a stackoverflow exception is thrown in c#?
Is this a constant value or machine dependent? I am writing a small application that processes a tree structure recursively and I am scared of getting a stackoverflow exception on some machines.
The three can have 50 levels at most so around 50 recursive calls one after another. Is this much?