This is how my array should look:
key : value
name : victor
age : 16
country : romania
city : bucharest
language : romania
How can I pass trough all it’s elements to obtain something like:
Console.WriteLine("{0} = {1}", /*keyName*/, /*keyValue*/);
That is not an array. That is dictionary.
To iterate over it, use either for loop or foreach loop.
example: