Having trouble with using ternary operator.
...
char symbol = str_base[i];
int count = 1;
...
(count == 1) ? str_rle += symbol : str_rle += count.ToString() + symbol;
Getting such error: Only assignment, call, increment, decrement, and new object expressions can be used as a statement
Why? Does ternary operator really only with: calling functions, ++ & -- ?
Thank you!