tags:

views:

11

answers:

1

If my app throws an exception I see the server error page. The stack track shows the method where the error occurred (null reference exception for example), and a plus number, like +730. How can I backtrack that number to the line of c# code?

Edit: I don't know what "+730" represents and I don't have a reference manual for it. One thing I can tell you is that this is not a line in a C# file.

A: 

If you are using Visual Studio you can press Ctrl+G and enter the line number you want on the page that exception occurs also you can watch the Stack Trace using Debug > Window > Stack trace hope it helps

Ehsan
It's not a line number in the source code! It might be a line in CIL but I have no quick tool to bring that up. I would not post here if I could find any documentation.
P a u l

related questions