Click here to Skip to main content
15,911,141 members
Home / Discussions / C#
   

C#

 
Question.NET Framework 1.1 and List Class? Pin
zaboboa24-Oct-05 4:58
zaboboa24-Oct-05 4:58 
AnswerRe: .NET Framework 1.1 and List Class? Pin
Tom Larsen24-Oct-05 5:22
Tom Larsen24-Oct-05 5:22 
GeneralRe: .NET Framework 1.1 and List Class? Pin
zaboboa24-Oct-05 5:33
zaboboa24-Oct-05 5:33 
GeneralRe: .NET Framework 1.1 and List Class? Pin
Dave Kreskowiak24-Oct-05 6:38
mveDave Kreskowiak24-Oct-05 6:38 
GeneralRe: .NET Framework 1.1 and List Class? Pin
zaboboa24-Oct-05 7:55
zaboboa24-Oct-05 7:55 
QuestionMake a method appear in the properties window Pin
monteiz24-Oct-05 4:18
monteiz24-Oct-05 4:18 
AnswerRe: Make a method appear in the properties window Pin
the last free name24-Oct-05 6:10
the last free name24-Oct-05 6:10 
GeneralRe: Make a method appear in the properties window Pin
monteiz24-Oct-05 22:51
monteiz24-Oct-05 22:51 
QuestionTelephone switch machine Pin
Wail A.Salem24-Oct-05 3:45
Wail A.Salem24-Oct-05 3:45 
QuestionFull path of IsolatedStorageFile Pin
mondolyo7814024-Oct-05 3:34
mondolyo7814024-Oct-05 3:34 
Question[serializable] trouble Pin
Sasuko24-Oct-05 2:46
Sasuko24-Oct-05 2:46 
AnswerRe: [serializable] trouble Pin
Matt Gerrans24-Oct-05 5:53
Matt Gerrans24-Oct-05 5:53 
Questiontry - catch problems Pin
zaboboa24-Oct-05 2:22
zaboboa24-Oct-05 2:22 
AnswerRe: try - catch problems Pin
AB777124-Oct-05 2:53
AB777124-Oct-05 2:53 
GeneralRe: try - catch problems Pin
zaboboa24-Oct-05 3:25
zaboboa24-Oct-05 3:25 
GeneralRe: try - catch problems Pin
AB777124-Oct-05 3:35
AB777124-Oct-05 3:35 
GeneralRe: try - catch problems Pin
zaboboa24-Oct-05 4:09
zaboboa24-Oct-05 4:09 
AnswerRe: try - catch problems Pin
S. Senthil Kumar24-Oct-05 4:44
S. Senthil Kumar24-Oct-05 4:44 
GeneralRe: try - catch problems Pin
zaboboa24-Oct-05 4:56
zaboboa24-Oct-05 4:56 
GeneralRe: try - catch problems Pin
Tom Larsen24-Oct-05 5:07
Tom Larsen24-Oct-05 5:07 
AnswerRe: try - catch problems Pin
Tom Larsen24-Oct-05 4:46
Tom Larsen24-Oct-05 4:46 
GeneralRe: try - catch problems Pin
zaboboa24-Oct-05 4:55
zaboboa24-Oct-05 4:55 
GeneralRe: try - catch problems Pin
Tom Larsen24-Oct-05 5:03
Tom Larsen24-Oct-05 5:03 
Well that is the nature of overflow exceptions: they depend on the system state you run in which changes over time (resources like memory comes and goes).

Something else is going on then. Are you getting the exception throw from outside your recursive try/catch block? That means the problem is elswhere (or everywhere). Or more specificially, the try/catch block doesn't fail because it can allocate 99% of the thread's stack space but then something else goes off and does something that requires 2% more.

If this is the case you need either need to place the try/catch block "higher" or rethink your design. I would encourage you to rethink your design since terminating your recursion because you ran out of stack is somewhat abnormal and worst not reproducable.
GeneralRe: try - catch problems Pin
zaboboa24-Oct-05 5:32
zaboboa24-Oct-05 5:32 
GeneralRe: try - catch problems Pin
Wjousts24-Oct-05 6:27
Wjousts24-Oct-05 6:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.