Not really. I just did a very quick test, and a StackOverflowException throws after 15,000 nested calls.
You cannot write code that will not be embedded recursively 15,000 times due to the large number of methods that you have.
Obviously, the exact number depends on the many locally variables that you allocated on the stack. But whatever this actual number is, it is not so close as to do what you offer.
source
share