private static string GetMethodName()
{
StackTrace vStackTrace = new StackTrace ();
if (vStackTrace . FrameCount <= 1 ) return string . Empty;
StackFrame vStackFrame = vStackTrace . GetFrame( 1 );
MethodBase vMethodBase = vStackFrame . GetMethod();
return vMethodBase . ToString();
} /* GetMethodName */