is there a C#/.NET equivalent of C++/Java maps?
Maps in C#
Collapse
This topic is closed.
X
X
-
AlexDPTags: None -
Baileys
RE: Maps in C#
AlexDP,
I think you're looking for classes that implement the IDictionary-interface,
since these allow you to work with key-value pairs (see ListDictionary,
SortedList, Hashtable, ... for more info).
Baileys.
"AlexDP" wrote:
[color=blue]
> is there a C#/.NET equivalent of C++/Java maps?[/color]
Comment