获取MethodBase对象的最快方法是什么?

时间:2011-05-16 18:14:28

标签: .net performance reflection

我有一个Type对象和一个方法名称:

Type type;  
string methodName;  

我需要一个方法“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();      
   }
}

但我需要更快的方法......

1 个答案:

答案 0 :(得分:0)

您可以撰写type.GetMethod(methodName)