Unity 2.0 System.Collections.Generic.List
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在构造函数中或使用 setter 来解决此限制:
如果您无法更改您的类,您仍然可以使用工厂。
You can work around this limitation, in the constructor or with a setter:
If you can not change your class you can still use a factory.