Код: Выделить всё
public class Lane
{
private int _filledSpots = 0;
public bool IsSpaceAvailable(Lane fromLane)
{
return fromLane._filledSpots == 4;
}
}
Подробнее здесь: https://stackoverflow.com/questions/783 ... ier-scopes
Код: Выделить всё
public class Lane
{
private int _filledSpots = 0;
public bool IsSpaceAvailable(Lane fromLane)
{
return fromLane._filledSpots == 4;
}
}