GenerativeComponents Help

Any

Returns a bool value indicating whether or not there are any members in the list. Equivalent to "list.Count > 0".

Example

Whether or not any child lines exceed the maximum length. (For example, in the context of a conditional expression (“… ? … : …”) or an ‘if’ statement.)

(from ln in line01
    where ln.Length > maxLength).Any()