Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save epidemicz/e67ffa811d661ca6302fea0de5bc3959 to your computer and use it in GitHub Desktop.
Save epidemicz/e67ffa811d661ca6302fea0de5bc3959 to your computer and use it in GitHub Desktop.
system.index
List<string> myList = ["one", "two", "three", "four!"];
foreach (var (index, item) in myList.Index())
{
Console.WriteLine($"{index}:{item}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment