Closed as exact duplicate of ‘How can I find the method that called the current method?’
Is this possible with c#?
void main() { Hello(); } void Hello() { // how do you find out the caller is function 'main'? }
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
However, this is not robust, especially as optimisations (such as JIT inlining) can monkey with the perceived stack frames.