반응형
using System.Linq;
// ...
string[] array = { "A", "B", "C", "D" };
foreach (var item in array.Select((value, index) => (value, index)))
{
var value = item.value;
var index = item.index;
}
반응형
'Unity > Unity 리서치' 카테고리의 다른 글
Unity Build결과물 용량 확인 (0) | 2022.02.14 |
---|---|
[Addressable] Catalog (0) | 2022.02.14 |
Addressable 동기(Synchronized)로 구현 (1) | 2022.02.04 |
[Addresable] Remote에서 받은 bundle이 저장되는 곳 (0) | 2022.01.29 |
Addresable AssetLabelReference (0) | 2022.01.29 |