I have a NameValueCollection, and want to iterate through the values. Currently, I’m doing this, but it seems like there should be a neater way to do it:
NameValueCollection
I think this is simpler:
For i As Integer = 0 To nvc.Count - 1 Console.Write("No", "Key", "Value") Console.Write(i, nvc.GetKey(i), nvc.Get(i)) Next