Skip to content

Instantly share code, notes, and snippets.

@DForshner
Created June 28, 2013 15:24
Show Gist options
  • Save DForshner/5885521 to your computer and use it in GitHub Desktop.
Save DForshner/5885521 to your computer and use it in GitHub Desktop.
foreach (var item in yourList.Select((Value, Index) => new { Value, Index }))
{
Console.WriteLine("Value=" + item.Value + ", Index=" + item.Index);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment