c# – 使用Linq选择类的属性返回IEnumerable

前端之家收集整理的这篇文章主要介绍了c# – 使用Linq选择类的属性返回IEnumerable前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有一个SortedList< int,MyClass>并且我想要返回一个新的IEnumerable< T>该类的财产如何做到这一点?

我已经尝试过SortedList.Select(x => x.MyProperty,x.AnotherProperty),但它不工作.

谢谢.

解决方法

你可以返回一个匿名对象:
var result = SortedList.Select(x => new { 
    x.Value.MyProperty,x.Value.AnotherProperty 
});

或者如果要使用当前方法范围之外的结果,您可以定义自定义类型:

IEnumerable<MyType> result = SortedList.Select(x => new MyType { 
    Prop1 = x.Value.MyProperty,Prop2 = x.Value.AnotherProperty 
});
原文链接:https://www.f2er.com/csharp/91903.html

猜你在找的C#相关文章