Debug the StackOverFlow exception

Posted by BDotA on Stack Overflow See other posts from Stack Overflow or by BDotA
Published on 2010-05-06T13:32:08Z Indexed on 2010/05/06 14:08 UTC
Read the original article Hit count: 160

Filed under:
|

When I run my C# program it throws an Stack Overflow exception in one of the methods on a DLL that I have a reference to it in my solution. but no debugging info is available to me because it says it is an stack overflow exception and no info is available. what are the next debugging steps that I should follow to understand what is going on and why ?

thanks

Edit: here is the code that stops at:

static public Collection SortCollection(Collection oCollection, string sPropertyName, string sKeyPropertyName)
{ 
    return SortCollection(oCollection, sPropertyName, sKeyPropertyName); 
} 

© Stack Overflow or respective owner

Related posts about c#

Related posts about debugging