Ejemplo n.º 1
0
        public void AddIfNotExistsDictionary()
        {
            var people = new System.Collections.Generic.Dictionary <string, PersonProper>(base.CollectionCount);

            foreach (var person in base.personProperDictionary)
            {
                people.AddIfNotExists <string, PersonProper>(person.Key, person.Value);
            }

            base.Consumer.Consume(people);
        }