$={files}.Count()
我在一个文本窗口输出该表达式,统计列表变量的长度。我发现 .Count() 有无括号均能正常运行。请问这是什么原因?
不带括号的是属性,带括号的是方法。
没有参数的情况下,Count 方法的效果和属性一样。
List<T>.Count Property (System.Collections.Generic) | Microsoft Docs
Enumerable.Count Method (System.Linq) | Microsoft Docs