Castle.MonoRail.Framework.Adapters.FileDictionaryAdapter.IDictionary C# (CSharp) Method

IDictionary() private method

Returns an object for the object.
private IDictionary ( ) : IDictionaryEnumerator
return IDictionaryEnumerator
		IDictionaryEnumerator IDictionary.GetEnumerator()
		{
			Hashtable copy = new Hashtable();
			
			foreach(String key in fileCollection.AllKeys)
			{
				copy[key] = fileCollection[key];
			}

			return copy.GetEnumerator();
		}