S
skneife
I need to access to a dictionary by its index like a string array.
Dictionary<string, string> tdmDx1 = new Dictionary<string, string>();
for (int item = 0; item < tdmDx1.Count; item++) {
.... how access item by its index ???
}
Sam
Dictionary<string, string> tdmDx1 = new Dictionary<string, string>();
for (int item = 0; item < tdmDx1.Count; item++) {
.... how access item by its index ???
}
Sam