foreach (var name in parent.names)
{
if name.lastname == null)
{
Violated = true;
this.message = "lastname reqd";
}
if (!Violated)
{
Violated = !(name.firstname == null) ? false : true;
if (ruleViolated)
this.message = "firstname reqd";
}
}
Zawsze, gdy naruszenie jest prawdą, chcę natychmiast wyjść z foreach
pętli. Jak mam to zrobić?