Foreach loop stop

I got a foreach loop and lets say i got objects with bools like isRoad and isBuilding a want to stop the block of the foreach loop its now on if its a road so not stopping the whole foreach loop just skipping the onces with isRoad = true Thank You in advance

hey;
use this :

if(isRoad == true)
    continue;