Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is kind of a silly question, but is it possible to get the name of the method that is currently being executed from within that method?

Public Sub SomeMethod()

   Dim methodName as String = System.Reflection.[function to get the current method name here?]

End Sub

Thanks

share|improve this question
1  
Needs a language tag. – Ignacio Vazquez-Abrams Jan 12 '10 at 18:10
Looks like some version of Visual Basic to me, but a language tag would be useful. – David Thornley Jan 12 '10 at 18:17
That's actually how to get the name of the calling method, not the currently executing method. Still cool, though! – Marc Bollinger Jan 12 '10 at 18:21

1 Answer

up vote 14 down vote accepted

System.Reflection.MethodInfo.GetCurrentMethod();

share|improve this answer
Thanks for the quick answer! – camainc Jan 12 '10 at 18:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.