Unity 2.0 System.Collections.Generic.List

发布于 2024-09-19 01:20:57 字数 105 浏览 8 评论 0原文

使用 Unity 2.0 xml 文件,我尝试填充一个包含通用列表的对象。根据Unity Configuration Schema,仅支持数组元素。有没有人尝试过使用 unity 来填充通用列表?

Using a Unity 2.0 xml file, I am trying to populate an object that contains a generic list. According to the Unity Configuration Schema, the array element is only supported. Has anyone ever tried to use unity to populate a generic list?

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

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

发布评论

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

评论(1

岁月无声 2024-09-26 01:20:57

您可以在构造函数中或使用 setter 来解决此限制:

public class MyService : IMyService {
    List<IMyDependency> _myDeps;

    [Dependency]
    public IMyDependency[] Deps { 
       set {
          _myDeps = new List<IMyDependency>(Deps);
       }
    }
    ...
}

如果您无法更改您的类,您仍然可以使用工厂。

You can work around this limitation, in the constructor or with a setter:

public class MyService : IMyService {
    List<IMyDependency> _myDeps;

    [Dependency]
    public IMyDependency[] Deps { 
       set {
          _myDeps = new List<IMyDependency>(Deps);
       }
    }
    ...
}

If you can not change your class you can still use a factory.

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