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