gpt4 book ai didi

c# - 使用 IMetaDataImport EnumMethods 获取基类层次结构方法

转载 作者:行者123 更新时间:2023-11-30 23:22:58 25 4
gpt4 key购买 nike

我正在尝试实现查看 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 结构的了解有限,这对找到正确的方法造成了障碍。

欢迎提出任何意见/建议!

问候,

最佳答案

GetTypeProps将在 ptkExtends 中返回基本类型的元数据标记,您可以使用它来遍历继承树并在进行时从每个方法中收集方法。

但是请注意,元数据 token 可能不是 TypeDef。它可以是 TypeRef(要求您解析类型)或 TypeSpec(要求您解析类型签名并提取适当的 TypeDef/TypeRef)。

关于c# - 使用 IMetaDataImport EnumMethods 获取基类层次结构方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38586598/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com