The best way to use dictionary items as we use the advantages of List

Posted by blgnklc on Stack Overflow See other posts from Stack Overflow or by blgnklc
Published on 2010-05-28T09:12:37Z Indexed on 2010/05/28 9:21 UTC
Read the original article Hit count: 280

Filed under:
|
|
|

I want to get use of dictionary items like I do in List generic class, e.g;

foreach(item in ItemList) { item.BlaBla; }

but in dictionary there s no chance, like e method above...

Dictionary<string, HtmlInputImage> smartPenImageDictionary;

I mean I got to know the key item for the dictionary item.. but what I want, I want to travel from beginning of the list till the end..

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET