Quantcast
Channel: Latest Questions by robertmathew
Viewing all articles
Browse latest Browse all 60

error for foreach statement

$
0
0
 public int[] boardState; // State of the baord


  void Start () 
    {

   foreach(state in boardState) 
      {
 state = 0;
       }

    }

error CS0230: Type and identifier are both required in a foreach statement

       private var boardState: int[]; // State of the baord
       // Set board state to off
       boardState = new int[9];
       for (state in boardState) 
        {
      state = 0;
        }

the code in java script is working fine but when i am trying to adopt same code in c # the error is coming

CS0230: Type and identifier are both required in a foreach statement

so how to modify the above java script to work in c#.


Viewing all articles
Browse latest Browse all 60

Latest Images

Trending Articles





Latest Images