배열의 경우 다음을 사용할 수 있습니다
Array.FindIndex<T>
.
int keyIndex = Array.FindIndex(words, w => w.IsKey);
목록의 경우 다음을 사용할 수 있습니다 List<T>.FindIndex
.
int keyIndex = words.FindIndex(w => w.IsKey);
모든에 대해 작동하는 일반 확장 메서드를 작성할 수도 있습니다 Enumerable<T>
.
///<summary>Finds the index of the first item matching an expression in an enumerable.</summary>
///<param name="items">The enumerable to search.</param>
///<param name="predicate">The expression to test the items against.</param>
///<returns>The index of the first matching item, or -1 if no items match.</returns>
public static int FindIndex<T>(this IEnumerable<T> items, Func<T, bool> predicate) {
if (items == null) throw new ArgumentNullException("items");
if (predicate == null) throw new ArgumentNullException("predicate");
int retVal = 0;
foreach (var item in items) {
if (predicate(item)) return retVal;
retVal++;
}
return -1;
}
LINQ도 사용할 수 있습니다.
int keyIndex = words
.Select((v, i) => new {Word = v, Index = i})
.FirstOrDefault(x => x.Word.IsKey)?.Index ?? -1;