public void RemoveRange(Column[] columns) { if (columns == null) { throw new System.ArgumentNullException("Column[] is null"); } for (int i=0; i<columns.Length; i++) { this.Remove(columns[i]); } }