如何从集合中检索第一个项目?

时间:2009-02-25 19:02:37

标签: c# collections c#-3.0

我不知道如何从这个集合中检索第一个项目:

IGrouping<string, Plantilla> groupCast = group as System.Linq.IGrouping<string, Plantilla>;

我也尝试过:

IGrouping<string, Plantilla> firstFromGroup = groupCast.FirstOrDefault();

但不起作用,显式转换已经存在

3 个答案:

答案 0 :(得分:9)

为什么不使用var

var firstFromGroup = group.First();

至于你收到错误的原因,我猜测Key或Element与你认为的不同。看一下错误消息的其余部分,看看编译器抱怨的类型。请注意,如果涉及匿名类型,获取它的唯一方法是使用var

答案 1 :(得分:1)

试试这个(基于你的部分解决方案):

foreach (var group in dlstPlantillas.SelectedItems)
{
    var groupCast = groupCast = group as System.Linq.IGrouping<string, Plantilla>
    if(groupCast == null) return;

    item = groupCast.FirstOrDefault<Plantilla>();  
    if(item == null) return;

    // do stuff with item
}

答案 2 :(得分:0)

这是我的部分解决方案:

foreach (var group in dlstPlantillas.SelectedItems)
                {
                    IGrouping<string, Plantilla> groupCast = group as System.Linq.IGrouping<string, Plantilla>;

                    if (null == groupCast) return;
                    foreach (Plantilla item in groupCast.Take<Plantilla>(1)) //works for me
                    {
                        template.codigoestudio = item.codigoestudio;
                        template.codigoequipo = item.codigoequipo;
                        template.codigoplantilla = item.codigoplantilla;
                        template.conclusion = item.conclusion;
                        template.hallazgo = item.hallazgo;
                        template.nombreequipo = item.nombreequipo;
                        template.nombreexamen = item.nombreexamen;
                        template.tecnica = item.tecnica;
                    }
                }