Skip to content

Instantly share code, notes, and snippets.

@snippe
Created December 30, 2014 10:32
Show Gist options
  • Save snippe/465a9b159c7c6d5d44bc to your computer and use it in GitHub Desktop.
Save snippe/465a9b159c7c6d5d44bc to your computer and use it in GitHub Desktop.
IEnumerable<int> example1 = Enumerable.Range(1, 10);
var example2 = Enumerable.Reverse(example1);
List<int> example3 = example1.Reverse().ToList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment