public object Clone()
        {
            ResourceHashtable rHT = new ResourceHashtable();

            foreach (DictionaryEntry de in Dictionary)
            {
                rHT.Add((Guid)de.Key, (Resource)de.Value);
            }

            return(rHT);
        }
Exemplo n.º 2
0
        public object Clone()
        {
            ResourceHashtable rHT = new ResourceHashtable();

            foreach( DictionaryEntry de in Dictionary )
                rHT.Add((Guid)de.Key, (Resource)de.Value);

            return rHT;
        }