I need to create a stacktrace in C# on Windows 10 store app (universal). The old classes for generating stacktraces no longer exist and the old trick of throwing an exception, catching, and inspecting the stack trace is also not working (showing only the top-method, which is the one generating the stack).
Any other ideas?
Edit: I need the stacktrace when an assertion is fired while the app is not attached to the debugger - I want to provide testers with the information on where the assertion occurred.