Fan.Sys.Map.pairsIterator C# (CSharp) Method

pairsIterator() public method

public pairsIterator ( ) : IDictionaryEnumerator
return IDictionaryEnumerator
        public IDictionaryEnumerator pairsIterator()
        {
            return m_map.GetEnumerator();
        }

Usage Example

Example #1
0
        private static void addProps(Hashtable index, Map props)
        {
            IDictionaryEnumerator en = props.pairsIterator();
              while (en.MoveNext())
              {
            string key = (string)en.Key;
            List val   = (List)en.Value;
            List master = (List)index[key];
            if (master == null)
              index[key] = val;
            else
              master.addAll(val);

              }
        }
All Usage Examples Of Fan.Sys.Map::pairsIterator