温莎城堡 ProxyGenerationException
我在尝试代理实现同一通用接口的两种不同通用形式的接口(没有目标)时收到以下错误。
所以,我有:
public interface IGenericFoo<T>
{
void DoSomething<T>();
}
// this is the interface I'm trying to proxy without target
public interface IFoo : IGenericFoo<MyType1>, IGenericFoo<MyType2>
{
}
我收到以下错误:
Duplicate element: Castle.DynamicProxy.Generators.MetaMethod
at DefaultProxyBuilder.CreateInterfaceProxyTypeWithoutTarget
有什么建议吗?有解决方法吗?
谢谢。
I'm getting the following error trying to proxy an Interface (without target) that implements two different generic forms of the same generic interface.
So, I have:
public interface IGenericFoo<T>
{
void DoSomething<T>();
}
// this is the interface I'm trying to proxy without target
public interface IFoo : IGenericFoo<MyType1>, IGenericFoo<MyType2>
{
}
I get the following error:
Duplicate element: Castle.DynamicProxy.Generators.MetaMethod
at DefaultProxyBuilder.CreateInterfaceProxyTypeWithoutTarget
Any suggestions? Is there a workaround?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论