c# find index element array

C#
int[] arr = { 3, 6, 4, 1, 6, 8 };

// returns 1
Array.IndexOf(arr, 6);
Source

Also in C#: