怎样实现类似SortedList<T,T>这样能用foreach的,
要能先进先出。
  foreach (KeyValuePair<string, string> pair in mGuidCodeList)
            {
                code = code.Replace(pair.Key, pair.Value);
            }