Version: 2017.3
Experimental: this API is experimental and might be changed or removed in the future.

UQuery.QueryBuilder<T0>.ForEach

切换到手册
public void ForEach (Action<T> funcCall);

参数

funcCall 要用每个匹配元素调用的函数。

描述

方便重载,是 Build().ForEach() 的简便方法。


public void ForEach (List<T2> result, Func<T,T2> funcCall);

参数

funcCall 要用每个匹配元素调用的函数。
result 每个返回值都将添加到此列表中。

描述

方便重载,是 Build().ForEach() 的简便方法。


public List<T2> ForEach (Func<T,T2> funcCall);

参数

funcCall 要用每个匹配元素调用的函数。

返回

List<T2> 返回此函数的所有调用结果的列表。

描述

方便重载,是 Build().ForEach() 的简便方法。