I can't read the condition in the while ... it should start with: until the i is equal to..., and then I don't understand.
private int[] array1;
private int[] array2;
private int index;
private bool scale;
for (int i = 0; i <= 100; i++)
{
while (i == (scale ? array1[index] : array1[index]))
{
}
}
How should I read the while condition completely?
Thanks in advance.