我有一個類型的對象和方法名稱:獲取MethodBase對象的最快方法是什麼?
Type type;
string methodName;
,我需要的方法「方法名」一MethodBase對象,在堆棧中的某處。
這工作:
MethodBase nemo;
StackTrace st = new StackTrace(); // Behaves poorly...
for(int i =0; i< st.FrameCount; i++)
{
StackFrame sf = st.GetFrame(i);
if (sf.GetMethod().Name == methodName)
{
nemo = sf.GetMethod();
}
}
但我需要一個更快的方法...
您是否找到了更好的方法? :) – 2011-07-28 08:29:31
不,我沒有... – seldary 2012-01-24 15:53:44