在C#中使用多个类型的列表

时间:2014-12-15 15:07:43

标签: c#

我正在使用C#应用程序中的实用程序类。我生锈了或者配置不正确。我想要一个接受任何类型对象列表的类。为了做到这一点,我写了以下内容:

using System;
using System.Collections.Generic;

namespace MyProject
{
    public class ItemCollection
    {
        public List<object> Items { get; set; }

        public ItemCollection(List<Object> items)
        {
            Items.Clear();
            foreach (Object item in items)
            {
              Items.Add(item);
            }
        }
    }
}

然后我使用以下方法调用此代码:

var myItem = new MyItem();
var myItems= new List<MyItem>();
myItems.Add(myItem);

var result = new MyCollection(myItems);

这给了我一个编译时错误,上面写着:

cannot convert from 'System.Collections.Generic.List<MyProject.MyItem>' to 'System.Collections.Generic.List<object>'

我认为一切都来自object。那么,这不应该起作用吗?

无论哪种方式,我认为仿制药更合适。我尝试使用以下内容:

public List<T> Items{ get; set; }

然而,这给了我一个编译时错误,说:

The type or namespace name 'T' could not be found

这对我来说似乎不对。我做错了什么?

1 个答案:

答案 0 :(得分:4)

您需要为整个班级添加一个类型参数:

public class ItemCollection<T>
{
    public List<T> Items { get; set; }

    public ItemCollection(List<T> items)
    {
        Items.Clear();
        foreach (T item in items)
        {
          Items.Add(item);
        }
    }
}

在不相关的说明中,您可以将构造函数简化为

Items = new List<T>(items);