Re: reflection question by Tim
Tim
Thu Jul 21 17:11:54 CDT 2005
There are a couple different ways to get the method name. Here is one...
Dim fullMemberName As String
Dim mb As MethodBase = System.Reflection.MethodBase.GetCurrentMethod()
fullMemberName = mb.DeclaringType.FullName + "." + mb.Name
--
Tim Wilson
.Net Compact Framework MVP
<param@community.nospam> wrote in message
news:e2yyz4jjFHA.2472@TK2MSFTNGP15.phx.gbl...
> Is there a way to get the currently executing function/sub fully qualified
> name for an assembly using reflection? e.g. "MyProject.MyClass.MyFunction"
>
> TIA!
>
>