Click here to Skip to main content
6,305,776 members and growing! (17,779 online)
Email Password   helpLost your password?
Languages » C# » General     Beginner License: The Code Project Open License (CPOL)

Navigating Exception Backtraces in Visual Studio

By henon the hacker

A code snippet to print exceptions and inner exceptions in Visual Studio's error parser format.
C# 2.0, Windows, .NET 2.0VS2005, Dev
Posted:21 Nov 2007
Views:7,057
Bookmarked:8 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
7 votes for this article.
Popularity: 3.25 Rating: 3.84 out of 5
1 vote, 14.3%
1
1 vote, 14.3%
2

3

4
5 votes, 71.4%
5

Introduction

Ever been angry about Visual Studio's inability to provide easy exception backtrace navigation? Here is the solution.

I wrote a nice little debug helper function called PrintException which has proven very useful to me and my team for our everyday work. It prints the relevant information about an exception and its inner exceptions to the output recursively. The clue is, that it does this in a format that is understood by the error parser of Microsoft Visual Studio. So if you get an exception, you can easily navigate to the exact location in your source files by double-clicking on the lines in the printed stacktrace. It also prints all inner exceptions recursively with increasing indent for better readability.

Using the Code

Basically all you need to do is to wrap your main routine with a try-catch statement and call Debug.PrintException(e); on the caught exception e. Once the exception has been printed to standard out, you may also stop the debugger and you still can navigate to the source of error by double-clicking on a backtrace line. Here is an example:

public static class PrintExceptionTest
{
  static void test()
  {
    try { test1(); }
    catch (Exception e) { throw new Exception("outer exception message", e); }
  }

  static void test1()
  {
    throw new InvalidOperationException("inner exception message");
  }

  public static void Main()
  {
    try { test(); }
    catch (Exception e) { Debug.PrintException(e); }
    Console.ReadLine();
  }
}

The formatted exceptions in the output window look like this:

********************************************************************************
Exception: "outer exception message"
--------------------------------------------------------------------------------
InnerException:
   ********************************************************************************
   InvalidOperationException: "inner exception message"
   --------------------------------------------------------------------------------
     c:\C#\snippets\print_exception.cs(58,1):   PrintExceptionTest.test1()
     c:\C#\snippets\print_exception.cs(48,1):   PrintExceptionTest.test()
   ********************************************************************************
  c:\C#\snippets\print_exception.cs(52,1):   PrintExceptionTest.test()
  c:\C#\snippets\print_exception.cs(65,1):   PrintExceptionTest.Main()
******************************************************************************** 

As I have experienced, the innermost exception is the most important one, so I do a depth first recursion on the inner exceptions. Your mileage may vary.

Note: Error parser formatting works, of course, only when the exception is raised in an assembly that has been compiled in debug mode. Also the redirection of standard out to Visual Studio's output window (the only place where you can navigate using the built-in error parser) is only activated by default for a Windows Forms application, not for a Console application.

The Code

Since the code snippet that does the exception formatting is so tiny I put it up here directly:

using System;

public static class Debug
{
  public static void PrintException(Exception exception)
  {
    PrintException(exception, "");
  }

  public static void PrintException(Exception exception, string indent)
  {
    string stars = new string('*', 80);
    Console.WriteLine(indent + stars);
    Console.WriteLine(indent + "{0}: \"{1}\"", 
	exception.GetType().Name, exception.Message);
    Console.WriteLine(indent + new string('-', 80));
    if (exception.InnerException != null)
    {
      Console.WriteLine(indent + "InnerException:");
      PrintException(exception.InnerException, indent + "   ");
    }
    foreach (string line in exception.StackTrace.Split(new string[] 
	{ " at " }, StringSplitOptions.RemoveEmptyEntries))
    {
      if (string.IsNullOrEmpty(line.Trim())) continue;
      string[] parts;
      parts = line.Trim().Split(new string[] { " in " }, 
	StringSplitOptions.RemoveEmptyEntries);
      string class_info = parts[0];
      if (parts.Length == 2)
      {
        parts = parts[1].Trim().Split(new string[] { "line" }, 
		StringSplitOptions.RemoveEmptyEntries);
        string src_file = parts[0];
        int line_nr = int.Parse(parts[1]);
        Console.WriteLine(indent + "  {0}({1},1):   {2}", 
		src_file.TrimEnd(':'), line_nr, class_info);
      }
      else
        Console.WriteLine(indent + "  " + class_info);
    }
    Console.WriteLine(indent + stars);
  }
} 

That's it. Works very well for me. Let me know if you came across a special case where the formatting did not work.

If you are interested in my other articles, see my blog on C# and Ruby.

History

  • 22nd November, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

henon the hacker


Member
Henon (aka Meinrad Recheis) is an Austrian computer science student who loves the programming languages C# and Ruby.

Occupation: Web Developer
Location: Austria Austria

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 8 of 8 (Total in Forum: 8) (Refresh)FirstPrevNext
GeneralA class for getting the formatted exception text based on the code in this article Pinmemberjawwadalam6:28 25 Jun '09  
GeneralGood Idea Pinmembermkavaleuski3:22 10 Dec '07  
GeneralCouldn't one do it like this ? Pinmemberxavier_k2y18:59 26 Nov '07  
GeneralRe: Couldn't one do it like this ? Pinmemberhenon the hacker0:46 27 Nov '07  
GeneralRe: Couldn't one do it like this ? Pinmemberxavier_k2y1:26 27 Nov '07  
GeneralCool Idea Pinmembermerlin9814:53 23 Nov '07  
GeneralNice PinmemberCorinna John4:28 22 Nov '07  
GeneralRe: Nice Pinmemberhenon the hacker6:28 22 Nov '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 21 Nov 2007
Editor: Deeksha Shenoy
Copyright 2007 by henon the hacker
Everything else Copyright © CodeProject, 1999-2009
Web19 | Advertise on the Code Project