There is a constructor on StackTrace that takes an exeption as an argument. All fine and well, but I noticed that all the other constructors say that it will get the StackTrace from the current thread, but the constructor taking the exception does not say anything about that other than
The resulting stack trace describes the stack at the time of the exception.
I just want to be sure that I will get the correct StackTrace of an exception even if I create the StackTrace on a different thread that the exception was created in when I create the StackTrace from an exception in another thread.
Can someone please confirm?