我正在尝试实现查看 MDBG 示例的托管调试器。
MDBG 能够解析给定范围内的函数名称,但它没有考虑基类。
MDBG 正在这样做:
/// <summary>
/// Resolves a Function from a Module, Class Name, and Function Name.
/// </summary>
/// <param name="mdbgModule">The Module that has the Function.</param>
/// <param name="className">The name of the Class that has the Function.</param>
/// <param name="functionName">The name of the Function.</param>
/// <returns>The MDbgFunction that matches the given parameters.</returns>
public MDbgFunction ResolveFunctionName(MDbgModule mdbgModule, string className, string functionName) {
...
foreach (MethodInfo mi in t.GetMethods()) {
if (mi.Name.Equals(functionName)) {
func = mdbgModule.GetFunction((mi as MetadataMethodInfo).MetadataToken);
break;
}
}
return func;
}
虽然 Type.GetMethods() 被覆盖并具有此实现,但使用 IMetaDataImport.EnumMethods:
public override MethodInfo[] GetMethods(BindingFlags bindingAttr) {
ArrayList al = new ArrayList();
IntPtr hEnum = new IntPtr();
int methodToken;
try {
while (true) {
int size;
m_importer.EnumMethods(ref hEnum, (int) m_typeToken, out methodToken, 1, out size);
if (size == 0) {
break;
}
al.Add(new MetadataMethodInfo(m_importer, methodToken));
}
}
finally {
m_importer.CloseEnum(hEnum);
}
return (MethodInfo[]) al.ToArray(typeof (MethodInfo));
}
问题是m_importer.EnumMethods()枚举表示指定类型的方法的 MethodDef 标记,但我对类层次结构中的所有方法感兴趣。
如何获取类层次结构中定义的所有方法?(显然,不能使用反射等常用方法,因为我正在分析其他进程中定义的类型)
我对互操作和深层 CLR/CIL 结构的了解有限,这阻碍了我找到正确的方法。
欢迎任何意见/建议!
问候,