예제 #1
0
        public object Clone()
        {
            IParticipantHashtable iPHT = new IParticipantHashtable();

            foreach (DictionaryEntry de in Dictionary)
            {
                iPHT.Add((string)de.Key, (IParticipant)de.Value);
            }

            return(iPHT);
        }
예제 #2
0
        public object Clone()
        {
            IParticipantHashtable iPHT = new IParticipantHashtable();

            foreach( DictionaryEntry de in Dictionary )
                iPHT.Add((string)de.Key, (IParticipant)de.Value);

            return iPHT;
        }