I am trying to understand why my conditional if statement is giving me a compile error. Is this not correct?
for(int i=startAt; i>=_itemsList.Count; length < 0 ? i-- : i++;)
{
}
|
According to the MSDN it should be one of what the error message says:
One of the weird compilable solutions would be:
|
|||||||||||
|
|
Best answer is zerkms, but there is another solution that should work.
|
|||
|
|
;in the end? – zerkms Nov 18 '12 at 4:38length < 0 ? i-- : i++is not a call, increment, decrement, or new object expression? – Jim Mischel Nov 18 '12 at 4:41