VbNet List查找元素

 

 

            For Each dto As ProductDto In ProductDtoList
                If IsNothing(dto.materialTextureName) = False Then
                    Dim optionDto As OptionDto = New OptionDto(dto.materialTextureId, dto.materialTextureName)
                    Dim a = New Predicate(Of OptionDto)(Function(c)
                                                            Return optionDto.id = c.id
                                                        End Function)
                    If listdto.Exists(a) Then
                        Exit For
                    End If
                    listdto.Add(optionDto)
                End If
            Next

 

VbNet List查找元素

 

上一篇:跟着“土牛”学架构知识


下一篇:我如何用LINQ填充DTO中的集合?