?
foreach(string s in dictionary.Keys)
{
resultaat += s + "=" + dictionary[s] +" ";
}
Please format the code you posted, by wrapping it in triple backticks. -> `
Why do you want to do that? For each is usually easier to read
i think this is the solution you want int counter = 0; while (counter++ <st.Count) { resultaat += dictionary + "=" + dictionary[dictionary.ElementAt(counter)] + " "; }
Обсуждают сегодня