Comparison of programming languages (associative array): Difference between revisions

Content deleted Content added
C#: aligned with other examples.
C#: fixed syntax
Line 79:
foreach(KeyValuePair<string,string> kvp in dic)
{
MessageBox.Show(String.Format("Phone number for {0} is {1}", kvp.Key, kvp.Value));
}
</source>