Maps in C#

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • AlexDP

    #1

    Maps in C#

    is there a C#/.NET equivalent of C++/Java maps?
  • Baileys

    #2
    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

    Working...