Okay, so if I start a new thread like this.
Is there some property, class, or function to get the target method when the thread was made?Code:Thread thr = new Thread(DoIt);
Pseudo Code
Anything?Code:Thread thr = new Thread(DoIt);
Console.WriteLine(thr.BaseMethodName); // "DoIt", or MethodInfo of DoIt
EDIT:
Nevermind, ThreadStart.Method is where it is.
