I have a List object.
How can I pass these list values to separate strings? The strings always occur in the same position as follows:
[0] = time
[1] = location
[2] = note
So I need a time, location, and note string for these values.
driver.location = log.event_data[1];
It says cannot implicitly convert to string.
.ToString()the values assuming the list is not generic or contains objects.