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";
}
}
जब भी उल्लंघन किया जाता है, तो मैं foreach
तुरंत लूप से बाहर निकलना चाहता हूं । मैं यह कैसे करुं?