0
votes
How do I find the type of the object instance of the caller of the current function?
Walk up the stack checking for base class - derived class relationship.
var type = new StackFrame(1).GetMethod().DeclaringType;
foreach (var frame in new StackTrace( …
