how does break; behave?

fguihen

Junior Contributor
Joined
Nov 10, 2003
Messages
248
Location
Eire
if i have something like this:

Code:
foreach(object o in objects)
{
     foreach(object p in objects1)
     {
        break;
     }
}

will the break break out of both loops or just the inside one?
 
Back
Top