Is it possible to transfer all data from a DataGridView column to string[] array ?
Here is my code so far, unfortunately, it can't convert DataGridViewRow to int
foreach (DataGridViewRow dgvrows in dgvDetail.Rows)
{
array[dgvrows] = dgvDetail.Rows[dgvrows].Cell[3].value.ToString().Trim;
}