요소가 없는 목록 설정 -
List<string> myList = new List<string>();
이제 목록이 비어 있는지 또는 null인지 확인하십시오 -
Console.WriteLine(myList == null);
위의 경우 "False"를 반환합니다. 즉, 목록이 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