public void AddRange(PropertyGridTypeWrapperCollection value)
 {
     for (int i = 0; (i < value.Count); i = (i + 1))
     {
         this.Add(value[i]);
     }
 }
 public PropertyGridTypeWrapperCollection(PropertyGridTypeWrapperCollection value)
 {
     this.AddRange(value);
 }
 public TypeWrapperEnumerator(PropertyGridTypeWrapperCollection mappings)
 {
     this.temp           = ((IEnumerable)(mappings));
     this.baseEnumerator = temp.GetEnumerator();
 }