I am using a data dictionary in VB.NET windows application.
I am trying to get the data from dictionary using the for loop.
ex. I have below dictionary table and I want to get the values using the for loop.
AAA - "0" BBB - "0" CCC - "0' DDD - "0"
For i As Integer = 0 To CatDictionaryNEW1.Count
' for each i I want to fetch the values using index of data dictionary
' when i = 0 then AAA should return
' when i =1 then BBB should return
' and so on....
next
How to do this ?