BuildingCoder.CmdLibraryPaths.PrintMap C# (CSharp) Method

PrintMap() public method

public PrintMap ( string>.IDictionary map, string description ) : void
map string>.IDictionary
description string
return void
        void PrintMap( IDictionary<string, string> map, string description )
        {
            Debug.Print( "\n{0}:\n", description );

              //StringStringMapIterator it = map.ForwardIterator(); // 2011
              //while( it.MoveNext() ) // 2011
              //{
              //  Debug.Print( "{0} -> {1}", it.Key, it.Current ); // 2011
              //}

              foreach( KeyValuePair<string, string> pair in map ) // 2012
              {
            Debug.Print( "{0} -> {1}", pair.Key, pair.Value ); // 2012
              }
        }
CmdLibraryPaths