I have to manipulate with some data in C#. My idea is to add them into array. Elements of that array will be (it will be array with 3 elements in it)
12, test11, comment12, comment23
15, test21, comment22, comment23
27, test31, comment32, comment33
... etc
Then, I will need to change ie. element 15 should be changed as
15, test21, comment22A, comment23
Can you help me how to work with this kind of arrays.
Thank you in advance!