एक सूची सेट करें जिसमें शून्य तत्व हों -
List<string> myList = new List<string>();
अब जांचें कि सूची खाली है या शून्य -
Console.WriteLine(myList == null);
ऊपर, "गलत" देता है यानी सूची खाली नहीं है - सूची खाली है।
आइए देखें पूरा कोड -
उदाहरण
using System; using System.Collections.Generic; using System.Linq; public class Demo { public static void Main() { List<string> myList = new List<string>(); // returns false i.e. an empty list (not a null list) Console.WriteLine(myList == null); } }
आउटपुट
False