[ Language/C# ]
[C#] C# foreach 반복문에서 index 값 가져오기
2024-01-23 16:20:48
JavaScript 에서는 반복문을 통해서 index 를 바로 가져올 수 있지만, C# 에서는 for 문을 이용하지 않는 이상 index 값을 바로 가져오기는 힘들다. 그렇다면 foreach 구문에서는 index 를 가져올 수 없는가? -> X 아래의 예제 코드를 통해서 foreach 반복문에서 index 를 가져오는 방법에 대해서 알려드리겠습니다. 예제 코드 string[] colorArray = { "red", "blue", "green", "yellow" }; foreach(var item in colorArray.Select((value, index) => (value, index))) { var color = item.value; var index = item.index; Console.Writ..