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