Is it possible to replace an entire DataGridViewRow value in one line of code?
Dim dgvR As DataGridViewRow = dgvExcelData.Rows(i)
'[...]
Dim row As String() = New String() {a,b,c,d,e}
I don't want to replace like this:
dgvR.Cells("xxx").Value = a