I have a trivial problem, but I can't solve it somehow. I have an example of code in VB
If(grid(x,y).Used = True)Then
grid(x,y).Used = False
....
End If
which look in c# like this
if(grid[x,y]."" == false)
{
grid[x,y]."" = true;
}
I can't find a substitute for "Used". I know that it's kinda stupid, but I just can't figure it out. Thanks for any advice or help.