J
Joerg Battermann
Hello there,
I have a custom type defined via
[...]
Public Class Requirement
Public IDNumber As Integer
Public Name As String
Public Description As String
Public VersionPlanAttributes As New _
System.Collections.Generic.List(Of Attribute)
Public Traces As New System.Collections.Generic.List(Of Trace)
Public Checked As Boolean = False
End Class
[...]
and want to find one particular item (identified via IDNumber) in a
filled collection of these items declared via
[...]
Public ERSRequirements As New System.Collections.Generic.List(Of_
Requirement)
[...]
... is there any quick way to do it or would I have to loop through the
collection?
Best Regards and thanks,
-Joerg
I have a custom type defined via
[...]
Public Class Requirement
Public IDNumber As Integer
Public Name As String
Public Description As String
Public VersionPlanAttributes As New _
System.Collections.Generic.List(Of Attribute)
Public Traces As New System.Collections.Generic.List(Of Trace)
Public Checked As Boolean = False
End Class
[...]
and want to find one particular item (identified via IDNumber) in a
filled collection of these items declared via
[...]
Public ERSRequirements As New System.Collections.Generic.List(Of_
Requirement)
[...]
... is there any quick way to do it or would I have to loop through the
collection?
Best Regards and thanks,
-Joerg