gpt4 book ai didi

c# - 如果我有继承类类型的 MethodInfo,如何获取接口(interface)的 MethodInfo?

转载 作者:太空狗 更新时间:2023-10-29 23:16:07 24 4
gpt4 key购买 nike

我有一个类类型的方法的MethodInfo,它是该类实现的接口(interface)定义的一部分。
如何检索类实现的接口(interface)类型上方法的匹配 MethodInfo 对象?

最佳答案

我想我找到了最好的方法:

var methodParameterTypes = classMethod.GetParameters().Select(p => p.ParameterType).ToArray();
MethodInfo interfaceMethodInfo = interfaceType.GetMethod(classMethod.Name, methodParameterTypes);

关于c# - 如果我有继承类类型的 MethodInfo,如何获取接口(interface)的 MethodInfo?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14621451/

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