在 Unity 中使用泛型 ... InvalidCastException

发布于 2024-08-28 18:27:06 字数 1227 浏览 9 评论 0原文

我的接口定义是: 公共接口 IInterface 其中 T:UserControl

我的类定义是: 公共部分类 App1Control :UserControl,IInterface

我的 app.config 的统一部分如下所示:

  <unity>
    <typeAliases>
      <typeAlias alias="singleton" type="Microsoft.Practices.Unity.ContainerControlledLifetimeManager, Microsoft.Practices.Unity" />
      <typeAlias alias="myInterface" type="MyApplication.IInterface`1, MyApplication" />
      <typeAlias alias="App1" type="MyApplication.App1Control, MyApplication" />
    </typeAliases>
    <containers>
      <container> 
        <types>
          <type type="myInterface" mapTo="App1" name="Application 1">
            <lifetime type="singleton"/>
          </type>
        </types>
      </container>
    </containers>
  </unity>

该应用程序运行良好,但是以下代码给出了 InvalidCastException

container.Resolve<IInterface<UserControl>>("Application 1");

错误消息是:

无法将“MyApplication.App1Control”类型的对象转换为“MyApplication.IInterface`1[System.Windows.Forms.UserControl]”类型

我相信我的代码中有一个小错误......但我无法弄清楚是什么。有什么想法吗?

My interface definition is:
public interface IInterface where T:UserControl

My class definition is:
public partial class App1Control : UserControl, IInterface

The unity section of my app.config looks as below:

  <unity>
    <typeAliases>
      <typeAlias alias="singleton" type="Microsoft.Practices.Unity.ContainerControlledLifetimeManager, Microsoft.Practices.Unity" />
      <typeAlias alias="myInterface" type="MyApplication.IInterface`1, MyApplication" />
      <typeAlias alias="App1" type="MyApplication.App1Control, MyApplication" />
    </typeAliases>
    <containers>
      <container> 
        <types>
          <type type="myInterface" mapTo="App1" name="Application 1">
            <lifetime type="singleton"/>
          </type>
        </types>
      </container>
    </containers>
  </unity>

The app runs fine but, the following code gives a InvalidCastException

container.Resolve<IInterface<UserControl>>("Application 1");

The error message is :

Unable to cast object of type 'MyApplication.App1Control' to type 'MyApplication.IInterface`1[System.Windows.Forms.UserControl]'

I believe there is a minor mistake in my code ... but am not able to figure out what. Any thoughts?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩世 2024-09-04 18:27:06

来自OP的评论Sunny D

我的App1Control的定义有一个错误。当我将定义从: 更改

public partial class App1Control : UserControl, myInterface<App1Control>

为:时,问题得到解决

public partial class App1Control : UserControl, myInterface<UserControl>

from a comment from the OP Sunny D:

There was a mistake in the definition of my App1Control. The issue was fixed when I changed the definition from:

public partial class App1Control : UserControl, myInterface<App1Control>

to:

public partial class App1Control : UserControl, myInterface<UserControl>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文