0100: Invalid operator
Compiler found an operator that is not supported in the current context. At the moment this error is being thrown when anything other than the assignment operator =
is used after the list of variables:
int a, b
a, b > 5 // error, > is invalid
Possible solutions:
check your expression. Use the
=
operator after a comma-separated list of variables:
int a, b
a, b = Car.GetColors(car)
use one variable with other operators:
int a, b
a > 5
b > 5
Previous0099: Left-hand side of the assignment must be a variableNext0101: Variable is not a class instance
Last updated