vote up 1 vote down star

Can I get the current method's MethodInfo somehow?

flag

68% accept rate

2 Answers

vote up 5 vote down

Found it myself after some screwing around with the reflection namespace...

System.Reflection.MethodBase.GetCurrentMethod()

link|flag
Hehe. You just beat me to it! Note that this returns a MethodBase object, not a MethodInfo. But that may be just what you are after. – Rune Grimstad Mar 11 at 12:47
now accept the the answer, and get a new badge:-) – Greg Dean Mar 11 at 12:48
Well, actually I can't accept my answer untill after 24 hours. Although I did get the batch anyway :P But I'm not really a badge hunter. SO has much more to offer then a coding RPG – boris callens Mar 11 at 12:55
vote up 1 vote down

Try the System.Reflection.MethodBase.GetCurrentMethod static method.

link|flag

Your Answer

Get an OpenID
or

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