Typically when I throw an exception, catch it, and print out the stacktrace, I get to see the call where the exception was thrown, the call that led to that, the call that led to that, and so on back to the root of the entire program.
Now it's only showing me the call where the exception is being caught, not where it's being thrown. I can't figure out what's changed to lead to this. Here's my program:
using System;
class foo {
static void Main(string[] args) {
try { f(); }
catch (Exception e) { Console.WriteLine(e.StackTrace); }
}
static void f() { g(); }
static void g() { throw new Exception(); }
}
And here's what gets printed out:
at foo.Main(String[] args) in C:\Projects\test\root.cs:line 5
What I expected would be something like this:
at foo.g...
at foo.f...
at foo.Main...
Any ideas?