5
जब कोई आइटम हटाने के लिए निर्दिष्ट न हो तो सेवा को अपवाद या वापस फेंक देना चाहिए
मेरे पास कोड का एक टुकड़ा है जिसे निम्न रूप में दर्शाया जा सकता है: public class ItemService { public void DeleteItems(IEnumerable<Item> items) { // Save us from possible NullReferenceException below. if(items == null) return; foreach(var item in items) { // For the purpose of this example, lets say I …