vote up 1 vote down star
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";
                }
            }

// whenever violated is true I want to get out of the foreach loop immediately. How do I do it?

flag

3 Answers

vote up 3 vote down

Just use the statement:

break;
link|flag
vote up 2 vote down

Use the break keyword.

link|flag
vote up 18 vote down

Use break;


EDIT:

Unrelated to your question, I see in your code the line:

Violated = !(name.firstname == null) ? false : true;

In this line, you take a boolean value (name.firstname == null). Then, you apply the ! operator to it. Then, if the value is true, you set Violated to false; otherwise to true. So basically, Violated is set to the same value as the original expression (name.firstname == null). Why not use that, as in:

Violated = (name.firstname == null);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.