根据其中一个字段从对象获取不同的值

时间:2014-01-30 23:32:00

标签: c#

我在C#中有一个List对象,其中item是以下类

    public class item
    {
        public string type{ get; set; }
        public string name{ get; set; }
    }

如何获得具有不同值的类型列表。 如果我有3件物品:

在这种情况下:

item x1 = new item(){type="ABC",name="Thing1"};
item x2 = new item(){type="ZYX",name="Thing2"};
item x3 = new item(){type="ABC",name="Thing3"};

我会得到一个包含2个值的列表,ABC和ZYX

1 个答案:

答案 0 :(得分:1)

您可以使用LINQ轻松完成此操作:

List<string> types = source.Select(x => x.type)
                           .Distinct()
                           .ToList();