Hello, I have a grid called grdPart.
Is it possible to start a foreach loop from a specific index, instead of the 0 position?
Hi William,
No, not a foreach loop. But you could just loop using the index.
for (int i = 10; i < this.ultraGrid1.Rows.Count; i++) { var row = this.ultraGrid1.Rows[i]; // Do something with the row here. }