egdotnet Posted May 28, 2004 Posted May 28, 2004 what is the cause of a system.stackoverflow error and how to I avoid it? Quote
Administrators PlausiblyDamp Posted May 28, 2004 Administrators Posted May 28, 2004 (edited) Quite often this is caused by recursion (i.e. you are repeatedly calling a function from within the same function). Easiest way to avoid it is either don't use recursion :) or include checks to limit how often a function is recursed into. If you are having a problem with a particular piece of code feel free to post here and we will see what we can do. Edited March 30, 2007 by PlausiblyDamp Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.