I've got some code which errors and I'm using the stacktrace to find out what the line number is but it seems to be giving me the wrong number
Here's my code
Try
Dim query As String = "Select * from table"
Dim ds As DataSet = data.db(query)
Catch e As Exception
Dim st As New StackTrace(True) 'This is the line number it gives me'
Dim sf As StackFrame = st.GetFrame(0)
Response.Write(" Method: " & sf.GetMethod().Name)
Response.Write(" File: " & sf.GetFileName())
Response.Write(" Line Number: " & sf.GetFileLineNumber().ToString())
End Try
It seems to give me the line number of where the StackTrace is starting rather than the line number of what is causing the exception
Any ideas?