This line of code confuses me:

List<string> keys = new List<string>();
IDictionaryEnumerator ca = cache.GetEnumerator();
while (ca.MoveNext())
{
  keys.Add(ca.Key.ToString());
}

What is an Enumerator? Is it connected to Enumerations? I try to find a tutorial on enumerators, but without success. Hope someone will have patience to explain it to me.

link|improve this question

possible duplicate of Can anyone explain IEnumerable and IEnumerator to me? – Kirk Woll Oct 5 '10 at 17:26
@Kirk: Thanks for the link. It's great. – sandalone Oct 6 '10 at 12:05
feedback

1 Answer

up vote 1 down vote accepted

You don't show what type 'cache' actually is but your code is equivalent to :

foreach(var ca in cache)  
{
   keys.Add(ca.Key.ToString();
}

foreach() uses the Enumerator as well, but cleaner through compiler-generated code.

link|improve this answer
I see. Which one is faster? Do you know that? – sandalone Oct 6 '10 at 10:26
@askmo: If you have to ask, use neither. But these 2 are the same. – Henk Holterman Oct 6 '10 at 11:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.