I have defined a structure in my code and have a list of this structures"
Structure Parcel
        Public name As String
        Public type As String                 
    End Structure
  Dim ParcelList As New List(Of Parcel)
Then I'm trying to set some values to an element of the list which name is known to me
For Each myParcel As Parcel In ParcelList
                If (myParcel.name = "Parcel1") Then
                    myParcel.type="Type1"
                End If
            Next
Unfortunately values in my list don't change at all. what am I doing wrong?
 
     
     
    