gpt4 book ai didi

.net - 泛型泛型方法调用MethodBase.GetCurrentMethod的结果

转载 作者:行者123 更新时间:2023-12-02 00:09:23 25 4
gpt4 key购买 nike

我在泛型类中有一个泛型方法。在此方法内部,如果未映射方法的泛型参数类型,但父类型,我需要为父类型调用相同的方法。对于这两位代码,我得到了不同的结果,尽管我希望它们是相同的。

这成功了:

MethodInfo methodInfo2 = this.GetType().GetMethods()[9]; // this is the correct one.
methodInfo2 = methodInfo2.MakeGenericMethod(mappedType);

这会崩溃:

MethodInfo methodInfo1 = System.Reflection.MethodBase.GetCurrentMethod() as MethodInfo;
methodInfo1 = methodInfo1.MakeGenericMethod(mappedType);

除了这个异常(exception):

GenericArguments[0], 'GenericClassConstraintAbstract.Abstract', on 'System.Collections.Generic.IList`1[Entity] GetEntities[Entity](System.Linq.Expressions.Expression`1[System.Func`2[Entity,System.Boolean]], Sbu.Sbro.Common.Core.Pagination.Paginator`1[Entity])' violates the constraint of type 'Entity'.

如果我在调试器监视中添加 methodInfo1 == methodInfo2,我会得到 false,但我不知道有什么区别。我可能比使用 [9] 选择正确的方法并以这种方式执行它更聪明,但我也想知道为什么崩溃的版本会这样做。

有什么想法吗?

编辑:现在有更好的例子:

interface BaseInterface
{ }

interface MyInterface : BaseInterface
{ }

abstract class Abstract : MyInterface
{ }

class Concrete : Abstract, MyInterface
{ }

class ProblemClass<GenericType> where GenericType : BaseInterface
{
public virtual IList<Entity> ProblemMethod<Entity>() where Entity : class, GenericType
{
if (typeof(Entity) == typeof(Concrete))
{
MethodInfo methodInfo = System.Reflection.MethodBase.GetCurrentMethod() as MethodInfo;
var t1 = this.GetType(); // perhaps the problem resides in
var t2 = methodInfo.DeclaringType; // these two not being equal?
methodInfo = methodInfo.MakeGenericMethod(typeof(Abstract));
return (methodInfo.Invoke(this, new Object[] { }) as IList).OfType<Entity>().ToList();
}
else
{
return new List<Entity>();
}
}
}

class Program
{
static void Main(string[] args)
{
new ProblemClass<MyInterface>().ProblemMethod<Concrete>();
}
}

最佳答案

因此,问题在于声明类型是开放泛型,而泛型方法中的约束依赖于类型中的泛型类型参数。

下面的代码解决了这个问题:

MethodInfo methodInfo = System.Reflection.MethodBase.GetCurrentMethod() as MethodInfo;
methodInfo = this.GetType().GetMethod(methodInfo.Name, methodInfo.GetParameters().Select(p => p.ParameterType).ToArray());
methodInfo = methodInfo.MakeGenericMethod(typeof(Abstract));
return (methodInfo.Invoke(this, new Object[] { }) as IList).OfType<Entity>().ToList();

http://msdn.microsoft.com/en-us/library/system.reflection.methodbase.getcurrentmethod.aspx中的备注.

关于.net - 泛型泛型方法调用MethodBase.GetCurrentMethod的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16303128/

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