Home
Random
Nearby
Log in
Settings
Donate Now
If Wikipedia is useful to you, please give today.
About Wikipedia
Disclaimers
Search
Comparison of programming languages (associative array): Difference between revisions
Article
Talk
Language
Watch
View history
Edit
Browse history interactively
← Previous edit
Next edit →
Content deleted
Content added
Visual
Wikitext
Revision as of 15:20, 6 September 2013
edit
War
(
talk
|
contribs
)
Extended confirmed users
2,178
edits
→
C#
:
aligned with other examples.
← Previous edit
Revision as of 16:36, 6 September 2013
edit
undo
War
(
talk
|
contribs
)
Extended confirmed users
2,178
edits
→
C#
:
fixed syntax
Next edit →
Line 79:
foreach(KeyValuePair<string,string> kvp in dic)
{
MessageBox.Show(String.Format("Phone number for {0} is {1}", kvp.Key, kvp.Value
)
);
}
</source>