I have a problem inserting string elements into an array of strings ... For example, I have three destination strings:
a = b b = c c = e
Then I want to insert these six variables into the string[] variables.
I use the following code, but this code only inserts the latest destination variables (c, e).
for (int i = 0; i < S; i++) // S = 3 number of assignment line { variables = assigmnent_lines[i].Split('='); }
source share