手册
脚本 API
unity3d.com
Version:
2017.4
2021.1
2020.3
2020.2
2020.1
2019.4
2019.3
2019.2
2019.1
2018.4
2018.3
2018.2
2018.1
2017.4
2017.3
2017.2
2017.1
5.6
包含此页的版本:
不含此页的版本:
受支持
旧版
手册
脚本 API
语言:
中文
English
中文
日本語
Español
한국어
Русский
脚本 API
Version:
2017.4
2021.1
2020.3
2020.2
2020.1
2019.4
2019.3
2019.2
2019.1
2018.4
2018.3
2018.2
2018.1
2017.4
2017.3
2017.2
2017.1
5.6
包含此页的版本:
不含此页的版本:
受支持
旧版
Experimental
: this API is experimental and might be changed or removed in the future.
UQuery.QueryState<T0>
.ForEach
切换到手册
public void
ForEach
(Action<T>
funcCall
);
参数
funcCall
要用每个匹配元素调用的操作。
描述
对与查询匹配的所有元素调用函数。
public void
ForEach
(List<T2>
result
, Func<T,T2>
funcCall
);
参数
result
每个返回值都将添加到此列表中。
funcCall
要用每个匹配元素调用的函数。
描述
对与查询匹配的所有元素调用函数。
public List<T2>
ForEach
(Func<T,T2>
funcCall
);
参数
funcCall
要用每个匹配元素调用的函数。
返回
List<T2>
返回此函数的所有调用结果的列表。
描述
对与查询匹配的所有元素调用函数。为方便进行了重载。