2
जहां एक ओर हालत बनाम गार्ड क्लॉस जारी रहता है, वहां से फॉरेस्ट लूप को छानना
मैंने देखा है कुछ प्रोग्रामर इसका उपयोग करते हैं: foreach (var item in items) { if (item.Field != null) continue; if (item.State != ItemStates.Deleted) continue; // code } इसके बजाय जहाँ मैं सामान्य रूप से उपयोग करूँगा: foreach (var item in items.Where(i => i.Field != null && i.State != ItemStates.Deleted)) …