AddRows
Adds a specified number of rows at the end of rows array.
cs
public void AddRows(Int32[] cols, Object[,] values);
Parameters
Int32[]
Object[,]
Example
cs
nextGrid1.Fill(new Int32[] { 0, 2 }, new Object[,] { { "Michael", 2 }, { "Lisa", 4 }, { "Andrea", 6 } });