Example #1
0
        public object Clone()
        {
            CNameToParticipantHashtable clone = new CNameToParticipantHashtable();

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

            return(clone);
        }
Example #2
0
        public object Clone()
        {
            CNameToParticipantHashtable clone = new CNameToParticipantHashtable();

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

            return clone;
        }