I’d like to get current executing method info in portable assembly with Windows Phone and Windows Store apps support.
However, MethodInfo.GetCurrentMethod() and MethodBase.GetCurrentMethod() are not available in such a portable assembly.
How can I get a MethodInfo for current method?
I’d like to get current executing method info in portable assembly with Windows Phone
Share
Maybe you have to use
Type.GetMethod(has other overloads too)?