Hello. I have the matrix below (3x3)which contains 9 names. How can I change one row in this matrix using a loop and set all names (of that row) to Pete? Thanks for any help.
string **firstArray = new string*[3];
for (int i = 0; i < 3; i++)
{ firstArray[i] = new string[3];}