public void MssGetMethodName(out string ssMethodName) {
StackTrace stackTrace = new StackTrace();
ssMethodName = "";
for (int i = 0; i < stackTrace.FrameCount; i++)
{
ssMethodName += string.Format("{0} : {1} : {2}", i, stackTrace.GetFrame(i).GetMethod().Name, Environment.NewLine);
}
} // MssGetMethodName