I was hoping someone can point out where I am going wrong? I haven't had much experience with using the Ternary operator but feel that there is good reason to use it here as it reduces code length.
However, I am getting the above error. Can anyone see where I am going wrong?
Colour.R <= 255 ? Colour.R+=10 : Colour.R+=11;
The compiler returns
Only assignment, call, increment, decrement, and new object expressions can be used as a statement
Where Colour represents a Color vector.