Tagged Questions
0
votes
3answers
79 views
for-in-loop/ Condition Is only used for the first element of the a List [closed]
I have searched for three days and didn't find a solution, Here is the code:
if (keyboardState.IsKeyDown(Keys.Right))
{
for (int i = GlobalClass.BlocksPositions.Count - 1; i > 0; i--)
{
...
-1
votes
1answer
121 views
for-in-loop/ Condition Is only used for the first element of the a List
I have searched for three days and didn't find a solution, Here is the code:
if (keyboardState.IsKeyDown(Keys.Right))
{
for (int i = GlobalClass.BlocksPositions.Count - 1; i > ...