Home > Enterprise >  3 string arrays in a DataGridView
3 string arrays in a DataGridView

Time:12-17

I have in C# 3 string arrays

string[] ARRAY1 = {HELLO 1, HELLO2 ,...}
string[] ARRAY2 = {COOKIE 1, COOKIE 2,...}
string[] ARRAY3 = {C# 1, C# 2,...}

I want to show them in a DataGridView like this enter image description here

CodePudding user response:

Since you have only 3 arrays, you can The result

  • Related