Show line number in exception handling

Crash893 picture Crash893 · Mar 27, 2009 · Viewed 50.3k times · Source

How would one display what line number caused the error and is this even possible with the way that .NET compiles its .exes?

If not is there an automated way for Exception.Message to display the sub that crapped out?

try
{
  int x = textbox1.Text;
}
catch(Exception ex)
{
     MessageBox.Show(ex.Message);
}

Answer

Steven A. Lowe picture Steven A. Lowe · Mar 27, 2009

Use ex.ToString() to get the full stack trace.

You must compile with debugging symbols (.pdb files), even in release mode, to get the line numbers (this is an option in the project build properties).