gpt4 book ai didi

c# - 使用反射唯一标识方法或构造函数

转载 作者:行者123 更新时间:2023-11-30 20:42:38 24 4
gpt4 key购买 nike

我需要为任何给定类唯一标识一个方法或构造函数,以便我可以在稍后阶段调用它。

我曾想过使用 ConstructorInfo.GetHashCode()MethodInfo.GetHashCode()方法希望散列码对于每个继承 MethodBase 的对象都是唯一的.虽然它们是独一无二的,但它们也是 change on each run of the program这意味着此方法对我来说毫无用处,因为我需要将对象持久保存到数据库以便以后能够运行它(即在重新启动、服务重新启动等之后)。

到目前为止,我真正能想出唯一标识方法和构造函数的唯一方法是

  1. 首先按名称查找匹配的方法/构造函数列表
  2. 迭代匹配的方法/构造函数以查看哪个参数列表与我想要的相匹配。

有没有更好的方法可以使用类中存在的反射来唯一标识方法或构造函数,而不必先迭代匹配的方法名称,然后迭代参数列表以找到第一个匹配项?

methodParams = null;
constructorInfo = null;

var methods = instanceType.GetMethods().Where(m => m.Name == constructorName);//this is required to handle methods that are overloaded
foreach (var method in methods)
{
var internalParams = method.GetParameters();
if (internalParams.Count() == requiredParams.Count())
{
var methodParamDict = internalParams.ToDictionary(x => x.Name, x => String.Empty);
foreach (var requiredParamKey in requiredParams.Keys)
{
if (methodParamDict.ContainsKey(requiredParamKey))
{
methodParamDict[requiredParamKey] = requiredParams[requiredParamKey];
}
}
if (methodParamDict.All(x => x.Value != String.Empty))
{
//set the methodParams to internalParams (i.e. we have found the correct overloaded method)
methodParams = internalParams;
constructorInfo = method as ConstructorInfo;
}
}
}

最佳答案

包括 Stefan 的建议,您可以像这样定义一个扩展方法类:

public static class CustomReflectionHelpers
{
public static String CreateUniqueName(this MethodInfo mi)
{
String signatureString = String.Join(",", mi.GetParameters().Select(p => p.ParameterType.Name).ToArray());
String returnTypeName = mi.ReturnType.Name;

if (mi.IsGenericMethod)
{
String typeParamsString = String.Join(",", mi.GetGenericArguments().Select(g => g.AssemblyQualifiedName).ToArray());


// returns a string like this: "Assembly.YourSolution.YourProject.YourClass:YourMethod(Param1TypeName,...,ParamNTypeName):ReturnTypeName
return String.Format("{0}:{1}<{2}>({3}):{4}", mi.DeclaringType.AssemblyQualifiedName, mi.Name, typeParamsString, signatureString, returnTypeName);
}

return String.Format("{0}:{1}({2}):{3}", mi.DeclaringType.AssemblyQualifiedName, mi.Name, signatureString, returnTypeName);
}
}

然后您可以像这样简化比较:

foreach (MethodInfo mi in yourType.GetMethods())
{
if (mi.CreateUniqueName() == stringStoredInDb) { /* do something */ }
}

关于c# - 使用反射唯一标识方法或构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31156916/

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