string GetGenericTypeSuffix(DictionaryCollectionTypes type)
 {
     switch (type)
     {
     case DictionaryCollectionTypes.SortedList_2:
     case DictionaryCollectionTypes.HashTable:
     case DictionaryCollectionTypes.HybridDictionary:
     case DictionaryCollectionTypes.ListDictionary:
     case DictionaryCollectionTypes.OrderedDictionary:
         return(String.Empty);
     }
     return("`2");
 }
		string GetGenericTypeSuffix(DictionaryCollectionTypes type)
		{
			switch (type) {
				case DictionaryCollectionTypes.SortedList_2:
				case DictionaryCollectionTypes.HashTable:
				case DictionaryCollectionTypes.HybridDictionary:
				case DictionaryCollectionTypes.ListDictionary:
				case DictionaryCollectionTypes.OrderedDictionary:
					return String.Empty;
			}
			return "`2";
		}