Show line number in exception handling
.net, c#, exception, line-numbers
Solution
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).
Problem
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); } ```