结果为空时LINQ返回什么

问题描述

它将返回一个空的可枚举。它不会为空。你可以睡觉的声音:)

解决方法

我有一个关于 LINQ
查询的问题。通常一个查询返回一个IEnumerable<T>类型。如果返回为空,则不确定是否为空。我不确定以下ToList()是否会引发异常或List<string>如果在IEnumerable结果中找不到任何内容则只是一个空?

   List<string> list = {"a"};
   // is the result null or something else?
   IEnumerable<string> ilist = from x in list where x == "ABC" select x;
   // Or directly to a list,exception thrown?
   List<string> list1 = (from x in list where x == "ABC" select x).ToList();

我知道这是一个非常简单的问题,但我暂时没有可用的 VS。