Skip to content

Instantly share code, notes, and snippets.

@vmunix
Created January 22, 2016 07:20
Show Gist options
  • Save vmunix/980d4bb243fc948a0eba to your computer and use it in GitHub Desktop.
Save vmunix/980d4bb243fc948a0eba to your computer and use it in GitHub Desktop.
namespace ConsoleApplication {
class Program
{
static void Main(string[] args)
{
List<int> things = new List<int>() { 10, 20, 31, 40 };
// ... Find index of first odd
int oddIndex = things.FindIndex(x => x % 2 != 0);
Console.WriteLine(oddIndex);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment