Is it possible to interpret a stack trace?

I’m trying to figure out how to handle exceptions a little more gracefully. As a bare minimum, I do this:

  catch(Exception currentException)
{
     Debug.Print("Need to handle this exception: " + currentException.ToString());
}

But I think there is a lot more information available. For example, here’s what shows up in the VS Locals window when I set a breakpoint at the Debug statement in the code block above.

Does anyone know how to intepret the stack trace array?

Thanks

does m_stackTrace count as a variable? try doing something with it in the exception code.

Edit: nvm, you said interpret, not find it.