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